83 lines
1.7 KiB
C#
83 lines
1.7 KiB
C#
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; }
|
||
}
|
||
}
|