using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Systems.Entitys.System; /// /// 系统功能. /// [SugarTable("BASE_SYSTEM")] public class SystemEntity : CLDEntityBase { /// /// 系统名称. /// [SugarColumn(ColumnName = "F_FULLNAME")] public string FullName { get; set; } /// /// 系统编码. /// [SugarColumn(ColumnName = "F_ENCODE")] public string EnCode { get; set; } /// /// 系统图标. /// [SugarColumn(ColumnName = "F_ICON")] public string Icon { get; set; } = string.Empty; /// /// 是否是主系统(0-不是,1-是). /// [SugarColumn(ColumnName = "F_ISMAIN")] public int? IsMain { get; set; } /// /// 扩展属性. /// [SugarColumn(ColumnName = "F_PROPERTYJSON")] public string PropertyJson { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } }