using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Net6Demo_Api.Entity { /// /// 系统配置实体 /// [Table("T_Sys_SystemConfig")] public class T_Sys_SystemConfig { /// /// ID /// [Key, Column(Order = 1)] public int F_ParamId { set; get; } /// /// 编码 /// public string? F_ParamCode { set; get; } /// /// 值 /// public string? F_ParamValue { set; get; } /// /// 描述 /// public string? F_ParamDes { set; get; } /// /// 状态 /// public int? F_State { set; get; } } }