using Net6Demo_Api.Util; namespace Net6Demo_Api.Entity { /// /// 列表 /// [Map(typeof(T_Sys_SystemConfig))] public class SystemConfigView { /// /// ID /// public int ParamId { set; get; } /// /// 编码 /// public string? ParamCode { set; get; } /// /// 值 /// public string? ParamValue { set; get; } /// /// 描述 /// public string? ParamDes { set; get; } /// /// 状态 /// public int? State { set; get; } } }