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.

48 lines
1.2 KiB
C#

12 months ago
using SqlSugar;
namespace ProductionSystem_Model.DbModel.System
{
/// <summary>
/// 数据字典
/// </summary>
[SugarTable("sys_dic")]
public class Sys_Dic : BaseModel
{
/// <summary>
/// 数据字典类型编码
/// </summary>
[SugarColumn(ColumnName = "dic_type_code")]
public string DicTypeCode { get; set; }
/// <summary>
/// 数据字典编码
/// </summary>
[SugarColumn(ColumnName = "dic_code")]
public string DicCode { get; set; }
/// <summary>
/// 数据字典名称
/// </summary>
[SugarColumn(ColumnName = "dic_name")]
public string DicName { get; set; }
/// <summary>
/// 排序索引
/// </summary>
[SugarColumn(ColumnName = "sortindex")]
public int SortIndex { get; set; }
/// <summary>
/// 是否默认选中
/// </summary>
[SugarColumn(ColumnName = "is_default_selected")]
public bool IsDefaultSelected { get; set; }
/// <summary>
/// 是否在主界面显示
/// </summary>
[SugarColumn(ColumnName = "is_show_main")]
public bool IsShowMain { get; set; }
}
}