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