| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Domain
- {
- /// <summary>
- /// 通用代码表
- /// </summary>
- [Comment("通用代码表")]
- public class GeneralizedCodeMaster
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 配置模块,DOP用DopConfig
- /// </summary>
- [Comment("配置模块")]
- public string FldName { get; set; }
- /// <summary>
- /// 配置项的值
- /// </summary>
- [Comment("配置项的值")]
- public string Comments { get; set; }
- /// <summary>
- /// 配置项描述
- /// </summary>
- [Comment("配置项描述")]
- public string Ufld1 { get; set; }
- /// <summary>
- /// 配置项Key
- /// </summary>
- [Comment("配置项Key")]
- public string Val { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- /// <summary>
- /// 是否确认:1-已确认;0-没确认
- /// </summary>
- [Comment("是否有效")]
- public bool IsConfirm { get; set; }
- /// <summary>
- /// 排产锁定期
- /// </summary>
- [Comment("排产锁定期")]
- public decimal UDeci1 { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Comment("创建时间")]
- public DateTime? CreateTime { get; set; }
- /// <summary>
- /// 创建人
- /// </summary>
- [Comment("创建人")]
- public string CreateUser { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Comment("修改时间")]
- public DateTime? UpdateTime { get; set; }
- /// <summary>
- /// 修改人
- /// </summary>
- [Comment("修改人")]
- public string UpdateUser { get; set; }
- }
- }
|