30 lines
649 B
C#
30 lines
649 B
C#
namespace YY.Admin.Services.Service;
|
|
|
|
/// <summary>
|
|
/// 数据字典项输出
|
|
/// </summary>
|
|
public class JeecgDictItemOutput
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
public string? DictCode { get; set; }
|
|
|
|
public string? DictName { get; set; }
|
|
|
|
public string? ItemText { get; set; }
|
|
|
|
public string? ItemValue { get; set; }
|
|
|
|
public string? ItemDescription { get; set; }
|
|
|
|
public int? SortOrder { get; set; }
|
|
|
|
public StatusEnum Status { get; set; } = StatusEnum.Disable;
|
|
|
|
public string? ItemColor { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public DateTime? UpdateTime { get; set; }
|
|
}
|