using SqlSugar; namespace MES.Service.Modes; /// /// 退料单头 /// [SugarTable("PURDKA")] public class Purdka { /// /// 自增列 /// [SugarColumn(ColumnName = "ID")] public decimal? Id { get; set; } /// /// 创建人员 /// [SugarColumn(ColumnName = "CREATEUSER")] public string Createuser { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATETIME")] public string Createtime { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "MODIFYTIME")] public string Modifytime { get; set; } /// /// 修改人员 /// [SugarColumn(ColumnName = "MODIFYUSER")] public string Modifyuser { get; set; } /// /// 审核 /// [SugarColumn(ColumnName = "AUDITING")] public string Auditing { get; set; } /// /// 退货单号 /// [SugarColumn(ColumnName = "DKA001")] public string Dka001 { get; set; } /// /// 退货类型 /// [SugarColumn(ColumnName = "DKA002")] public string Dka002 { get; set; } /// /// 退货日期 /// [SugarColumn(ColumnName = "DKA003")] public string Dka003 { get; set; } /// /// 退货时间 /// [SugarColumn(ColumnName = "DKA004")] public string Dka004 { get; set; } /// /// 供应商 /// [SugarColumn(ColumnName = "DKA005")] public string Dka005 { get; set; } /// /// 供应商名称 /// [SugarColumn(ColumnName = "DKA006")] public string Dka006 { get; set; } /// /// 部门 /// [SugarColumn(ColumnName = "DKA007")] public string Dka007 { get; set; } /// /// 审核者 /// [SugarColumn(ColumnName = "DKA008")] public string Dka008 { get; set; } /// /// 审核日期 /// [SugarColumn(ColumnName = "DKA009")] public string Dka009 { get; set; } /// /// 退货状态,0或空为未退货,1为已退完 /// [SugarColumn(ColumnName = "DKA010")] public string Dka010 { get; set; } /// /// ERPID /// [SugarColumn(ColumnName = "ERPID")] public decimal? Erpid { get; set; } /// /// 保管员编码 /// [SugarColumn(ColumnName = "DKA011")] public string Dka011 { get; set; } /// /// 验收员编码 /// [SugarColumn(ColumnName = "DKA012")] public string Dka012 { get; set; } /// /// 是否推送红字入库1-推送,0-未推送 /// [SugarColumn(ColumnName = "DKA013")] public decimal? Dka013 { get; set; } }