2025-04-21 14:10:27 +08:00

83 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using MyCode.Project.Infrastructure.Enumeration;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.Common
{
//
// 摘要:
// 列表项结果-下拉列表
public class ItemResult
{
//
// 摘要:
// 文本
public string Text { get; set; }
//
// 摘要:
// 值
public string Value { get; set; }
//
// 摘要:
// 排序号
public int? SortId { get; set; }
}
public class ServiceDeptList
{
/// <summary>
/// 文本
/// </summary>
public string Text { get; set; }
/// <summary>
/// 值
/// </summary>
public string Value { get; set; }
/// <summary>
/// 排序号
/// </summary>
public int? SortId { get; set; }
/// <summary>
/// 是否显示 1=显示 0=隐藏
/// </summary>
public int IfShow { get; set; }
}
public class NameValue
{
//
// 摘要:
// 文本
public string Name { get; set; }
//
// 摘要:
// 值
public int Value { get; set; }
//
// 摘要:
// 排序号
public int? SortId { get; set; }
}
public class TypeValue
{
/// <summary>
/// 4:新评论通知 5打卡提醒 ,
/// </summary>
public int Type { get; set; }
/// <summary>
/// 模板id
/// </summary>
public string Value { get; set; }
}
}