| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- 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
- {
- /// <summary>
- /// 系统配置表
- /// </summary>
- [Comment("系统配置表")]
- [CollectionName("dopbase", "sys_config")]
- public class sys_config:Entity<long>
- {
- ///// <summary>
- ///// 主键id
- ///// </summary>
- //[Key]
- //[Comment("主键id")]
- //public long config_id { get; set; }
- /// <summary>
- /// 配置类型
- /// </summary>
- [Comment("配置类型")]
- [StringLength(50)]
- public string? type { get; set; }
- /// <summary>
- /// 账务状态(0-关帐,1-开帐)
- [Comment("账务状态(0-关帐,1-开帐)")]
- [DefaultValue(true)]
- public bool financeis_close { get; set; }
- /// <summary>
- /// 下一个开帐日期
- /// </summary>
- [Comment("下一个开帐日期")]
- public DateTime? next_open_date { get; set; }
- /// <summary>
- /// 是否显示(0不显示、1显示)
- [Comment("是否显示(0不显示、1显示)")]
- [DefaultValue(true)]
- public bool is_show { get; set; }
- }
- }
|