You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace ProductionSystem_Model.ViewModel.Response.System
|
|
|
|
|
{
|
|
|
|
|
public class DicVM
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据字典类型编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DicTypeCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据字典编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DicCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据字典名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DicName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 排序索引
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int SortIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否默认选中
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsDefaultSelected { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否默认选中
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StrIsDefaultSelected { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否在主界面显示
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsShowMain { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否在主界面显示
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StrIsShowMain { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 备注
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据状态
|
|
|
|
|
/// 1—可用,0—不可用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据状态
|
|
|
|
|
/// 1—可用,0—不可用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string StrIsActive { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|