| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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
- {
- /// <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 Boolean IsActive { get; set; }
- /// <summary>
- /// 是否确认:1-已确认;0-没确认
- /// </summary>
- [Comment("是否有效")]
- public Boolean IsConfirm { 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; }
- }
- }
|