using Business.Model; 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.Model.MES.IC { /// /// 通用代码表 /// [Comment("通用代码表")] public class GeneralizedCodeMaster { /// /// 主键 /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 域名 /// [Comment("域名")] public string? Domain { get; set; } /// /// 配置模块,DOP用DopConfig /// [Comment("配置模块")] public string? FldName { get; set; } /// /// 配置项的值 /// [Comment("配置项的值")] public string? Comments { get; set; } /// /// 配置项描述 /// [Comment("配置项描述")] public string? Ufld1 { get; set; } /// /// 配置项Key /// [Comment("配置项Key")] public string? Val { get; set; } /// /// 是否有效:1-有效;0-无效 /// [Comment("是否有效")] public Boolean IsActive { get; set; } /// /// 是否确认:1-已确认;0-没确认 /// [Comment("是否有效")] public Boolean IsConfirm { get; set; } /// /// 创建时间 /// [Comment("创建时间")] public DateTime? CreateTime { get; set; } /// /// 创建人 /// [Comment("创建人")] public string? CreateUser { get; set; } /// /// 创建时间 /// [Comment("修改时间")] public DateTime? UpdateTime { get; set; } /// /// 修改人 /// [Comment("修改人")] public string? UpdateUser { get; set; } } }