using Business.Model; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using Volo.Abp.Domain.Entities; namespace Bussiness.Model.SystemData { /// /// 系统配置表 /// [Description("系统配置表")] public class sys_config:Entity { ///// ///// 主键id ///// //[Key] //[Description("主键id")] //public long config_id { get; set; } /// /// 配置类型 /// [Description("配置类型")] [StringLength(50)] public string? type { get; set; } /// /// 账务状态(0-关帐,1-开帐) [Description("账务状态(0-关帐,1-开帐)")] [DefaultValue(true)] public bool financeis_close { get; set; } /// /// 下一个开帐日期 /// [Description("下一个开帐日期")] public DateTime? next_open_date { get; set; } /// /// 是否显示(0不显示、1显示) [Description("是否显示(0不显示、1显示)")] [DefaultValue(true)] public bool is_show { get; set; } } }