using System; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using ChangkeTec.SDMS.Model.Base; using ChangkeTec.SDMS.Model.Enums; namespace ChangkeTec.SDMS.Model.ExchangeCenterTables { [Description("BOM表")] public class TES_BOM : ITaskTable { [Description("父级物料")] [StringLength(50)] public string ParentPart { get; set; } [Description("组件")] [StringLength(50)] public string ComponentPart { get; set; } [Description("参考")] [StringLength(50)] public string Reference { get; set; } [Description("生效日期")] public DateTime StartEffective { get; set; } [Description("每件需求量")] public decimal QuantityPer { get; set; } [Description("结构类型")] [StringLength(50)] public string StructureType { get; set; } [Description("结束有效日")] public DateTime EndEffective { get; set; } [Description("备注")] [StringLength(50)] public string Remarks { get; set; } [Description("废品")] public decimal Scrap { get; set; } [Description("提前期")] public int LeadTimeOffset { get; set; } [Description("工序")] public int Operation { get; set; } [Description("序号")] public int SequenceNumber { get; set; } [Description("预测百分比")] public decimal FporecastPercent { get; set; } [Description("分组")] [StringLength(50)] public string OptionGroup { get; set; } [Description("处理")] [StringLength(50)] public string Process { get; set; } [Key] public Guid GUID { get; set; } = Guid.NewGuid(); [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int UID { get; set; } [Description("创建人")] [StringLength(50)] public string CreateUser { get; set; } [Description("创建时间")] public DateTime CreateTime { get; set; } [Description("备注")] public string Remark { get; set; } [Description("任务编号")] public Guid TaskID { get; set; } [Description("命令类型")] [StringLength(50)] public string CommandType { get; set; } public Guid DataID { get; set; } [Description("域")] [StringLength(50)] public string Domain { get; set; } [Description("地点")] [StringLength(50)] public string Site { get; set; } } }