using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace NewPdaSqlServer.entity { /// /// 入库检检验表头 /// [SugarTable("QS_ITEM_OQC_REQ")] public class QsItemOqcReq { /// /// /// 默认值: (newid()) /// [SugarColumn(ColumnName="guid" ,IsPrimaryKey = true )] public Guid Guid { get; set; } /// /// 检验单号 /// [SugarColumn(ColumnName="RELEASE_NO" )] public string ReleaseNo { get; set; } /// /// 检验日期 /// [SugarColumn(ColumnName="FCHECK_DATE" )] public DateTime? FcheckDate { get; set; } /// /// 检验人员 /// [SugarColumn(ColumnName="FCHECK_BY" )] public string FcheckBy { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnName="ITEM_NO" )] public string ItemNo { get; set; } /// /// 检验结果 /// [SugarColumn(ColumnName="FCHECK_RESU" )] public string FcheckResu { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName="CREATE_BY" )] public string CreateBy { get; set; } /// /// 创建日期 /// [SugarColumn(ColumnName="CREATE_DATE" )] public DateTime? CreateDate { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName="LASTUPDATE_BY" )] public string LastupdateBy { get; set; } /// /// 更新日期 /// [SugarColumn(ColumnName="LASTUPDATE_DATE" )] public DateTime? LastupdateDate { get; set; } /// /// /// [SugarColumn(ColumnName="MODIFY1_BY" )] public string Modify1By { get; set; } /// /// 入库申请单号 /// [SugarColumn(ColumnName="BILL_NO" )] public string BillNo { get; set; } /// /// 模具号 /// [SugarColumn(ColumnName="MOID_NUM" )] public string MoidNum { get; set; } /// /// /// [SugarColumn(ColumnName="FSUBMIT_BY" )] public string FsubmitBy { get; set; } /// /// /// [SugarColumn(ColumnName="FSUBMIT_DATE" )] public DateTime? FsubmitDate { get; set; } /// /// /// [SugarColumn(ColumnName="FSUBMIT" )] public int? Fsubmit { get; set; } /// /// 备注 /// [SugarColumn(ColumnName="REMARKS" )] public string Remarks { get; set; } /// /// 物料ID /// [SugarColumn(ColumnName="ITEM_ID" )] public int? ItemId { get; set; } } }