using YBEE.EQM.Core;
namespace YBEE.EQM.Application
{
///
/// 字典数据输出参数
///
public class SysDictDataOutput
{
///
/// 主键
///
[Required]
public int Id { get; set; }
///
/// 字典类型Id
///
[Required]
public int SysDictTypeId { get; set; }
///
/// 名称
///
[Required]
public string Name { get; set; }
///
/// 名称
///
[Required]
public string NickName { get; set; } = "";
///
/// 编码
///
[Required]
public string Code { get; set; }
///
/// 值
///
[Required]
public int Value { get; set; }
///
/// 前端状态编码
///
public string AntStatus { get; set; }
///
/// 前端颜色值
///
public string AntColor { get; set; }
///
/// 排序
///
[Required]
public int Sort { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 状态
///
public CommonStatus Status { get; set; }
///
/// 字典类型
///
public SysDictTypeOutput SysDictType { get; set; }
}
}