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