using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace ZR.Model.System { /// /// 参数配置,数据实体对象 /// /// @author zhaorui /// @date 2021-09-29 /// [SugarTable("sys_config")] [Tenant("0")] public class SysConfig: SysBase { /// /// 描述 : /// 空值 :False /// [SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int ConfigId { get; set; } /// /// 描述 : /// 空值 :True /// public string ConfigName { get; set; } /// /// 描述 : /// 空值 :True /// public string ConfigKey { get; set; } /// /// 描述 : /// 空值 :True /// public string ConfigValue { get; set; } /// /// 描述 : /// 空值 :True /// public string ConfigType { get; set; } } }