using SqlSugar;
namespace NewPdaSqlServer.entity;
///
/// 退料单头
///
[SugarTable("PURDKA")]
public class Purdka
{
///
/// 默认值: (newid())
///
[SugarColumn(ColumnName = "guid", IsPrimaryKey = true)]
public Guid Guid { 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; }
///
///
[SugarColumn(ColumnName = "DKA010")]
public string Dka010 { get; set; }
///
///
[SugarColumn(ColumnName = "ERPID")]
public int? 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 int? Dka013 { get; set; }
}