using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using SqlSugar; namespace MES.Service.Modes; /// /// 巡检检验表头 /// [Table("QS_QA_ITEM_XJ")] [SugarTable("QS_QA_ITEM_XJ")] //用于SqlSugar public class QsQaItemXj { /// /// 序列SEQ_QS_XJ /// [Key] [Column("ID")] [SugarColumn(IsPrimaryKey = true, OracleSequenceName = "SEQ_QS_XJ", ColumnName = "ID")] //用于SqlSugar public decimal? Id { get; set; } /// /// 检验单号 /// [SugarColumn(ColumnName = "RELEASE_NO", Length = 100)] public string? ReleaseNo { get; set; } /// /// 检验日期 /// [SugarColumn(ColumnName = "FCHECK_DATE")] public DateTime? CheckDate { get; set; } /// /// 检验人员 /// [SugarColumn(ColumnName = "FCHECK_BY", Length = 100)] public string? CheckBy { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnName = "ITEM_NO", Length = 100)] public string? ItemNo { get; set; } /// /// 检验结果 /// [SugarColumn(ColumnName = "FCHECK_RESU", Length = 100)] public string? CheckResult { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATE_BY", Length = 100)] public string? CreateBy { get; set; } /// /// 创建日期 /// [SugarColumn(ColumnName = "CREATE_DATE")] public DateTime? CreateDate { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "LASTUPDATE_BY", Length = 100)] public string? LastUpdateBy { get; set; } /// /// 更新日期 /// [SugarColumn(ColumnName = "LASTUPDATE_DATE")] public DateTime? LastUpdateDate { get; set; } /// /// 修改人 /// [SugarColumn(ColumnName = "MODIFY1_BY", Length = 100)] public string? ModifyBy { get; set; } /// /// 物料单位 /// [SugarColumn(ColumnName = "ITEM_UNIT", Length = 100)] public string? ItemUnit { get; set; } /// /// 工单号 /// [SugarColumn(ColumnName = "BILL_NO", Length = 50)] public string? BillNo { get; set; } /// /// 模具号 /// [SugarColumn(ColumnName = "MOID_NUM", Length = 50)] public string? MoldNum { get; set; } /// /// 提交人 /// [SugarColumn(ColumnName = "FSUBMIT_BY", Length = 50)] public string? SubmitBy { get; set; } /// /// 提交日期 /// [SugarColumn(ColumnName = "FSUBMIT_DATE")] public DateTime? SubmitDate { get; set; } /// /// 提交状态(0/1) /// [SugarColumn(ColumnName = "FSUBMIT")] public int? SubmitStatus { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "REMARKS", Length = 200)] public string? Remarks { get; set; } /// /// 物料ID /// [SugarColumn(ColumnName = "ITEM_ID")] public long? ItemId { get; set; } [SugarColumn(IsIgnore = true)] public string? Daa020 { get; set; } [SugarColumn(IsIgnore = true)] public decimal? PlanQty { get; set; } [SugarColumn(IsIgnore = true)] public string? ItemName { get; set; } [SugarColumn(IsIgnore = true)] public string? ItemModel { get; set; } }