using SqlSugar; namespace NewPdaSqlServer.entity { /// /// 采购到货单表身 /// [SugarTable("PURDHB")] public class Purdhb { /// /// /// 默认值: (newid()) /// [SugarColumn(ColumnName="guid" ,IsPrimaryKey = true )] public Guid Guid { get; set; } /// /// 单号 /// [SugarColumn(ColumnName="DHB001" )] public string Dhb001 { get; set; } /// /// 序号 /// [SugarColumn(ColumnName="DHB002" )] public string Dhb002 { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnName="DHB003" )] public string Dhb003 { get; set; } /// /// 物料名称 /// [SugarColumn(ColumnName="DHB004" )] public string Dhb004 { get; set; } /// /// 物料规格 /// [SugarColumn(ColumnName="DHB005" )] public string Dhb005 { get; set; } /// /// 交货数量 /// [SugarColumn(ColumnName="DHB006" )] public int? Dhb006 { get; set; } /// /// 单位 /// [SugarColumn(ColumnName="DHB007" )] public string Dhb007 { get; set; } /// /// 仓库 /// [SugarColumn(ColumnName="DHB008" )] public string Dhb008 { get; set; } /// /// 仓库名称 /// [SugarColumn(ColumnName="DHB009" )] public string Dhb009 { get; set; } /// /// 批号 /// [SugarColumn(ColumnName="DHB010" )] public string Dhb010 { get; set; } /// /// 来源单号 /// [SugarColumn(ColumnName="DHB011" )] public string Dhb011 { get; set; } /// /// 来源序号 /// [SugarColumn(ColumnName="DHB012" )] public int? Dhb012 { get; set; } /// /// 清点数量 /// [SugarColumn(ColumnName="DHB013" )] public int? Dhb013 { get; set; } /// /// 到厂日期 /// [SugarColumn(ColumnName="DHB014" )] public string Dhb014 { get; set; } /// /// 验收数量 /// [SugarColumn(ColumnName="DHB015" )] public int? Dhb015 { get; set; } /// /// 验退数量 /// [SugarColumn(ColumnName="DHB016" )] public int? Dhb016 { get; set; } /// /// 进货单价 /// [SugarColumn(ColumnName="DHB017" )] public int? Dhb017 { get; set; } /// /// 进货金额 /// [SugarColumn(ColumnName="DHB018" )] public int? Dhb018 { get; set; } /// /// 客户料号 /// [SugarColumn(ColumnName="DHB019" )] public string Dhb019 { get; set; } /// /// 部门编号 /// [SugarColumn(ColumnName="DHB020" )] public string Dhb020 { get; set; } /// /// 赠品数 /// [SugarColumn(ColumnName="DHB021" )] public int? Dhb021 { get; set; } /// /// 更新ERP /// [SugarColumn(ColumnName="DHB022" )] public string Dhb022 { get; set; } /// /// 检验状态 /// [SugarColumn(ColumnName="DHB023" )] public string Dhb023 { get; set; } /// /// 备注 /// [SugarColumn(ColumnName="DHB024" )] public string Dhb024 { get; set; } /// /// 审核 /// [SugarColumn(ColumnName="AUDITING" )] public int? Auditing { get; set; } /// /// ERP采购单号ID /// [SugarColumn(ColumnName="DHB026" )] public int? Dhb026 { get; set; } /// /// ERP采购序号ID /// [SugarColumn(ColumnName="DHB027" )] public int? Dhb027 { get; set; } /// /// ERP物料ID /// [SugarColumn(ColumnName="DHB028" )] public int? Dhb028 { get; set; } /// /// 待检数量 /// [SugarColumn(ColumnName="DHB029" )] public int? Dhb029 { get; set; } /// /// 检验日期 /// [SugarColumn(ColumnName="DHB030" )] public string Dhb030 { get; set; } /// /// 备注信息1 /// [SugarColumn(ColumnName="DHB031" )] public string Dhb031 { get; set; } /// /// 备注信息2 /// [SugarColumn(ColumnName="DHB032" )] public int? Dhb032 { get; set; } /// /// 备注信息3 /// [SugarColumn(ColumnName="DHB033" )] public string Dhb033 { get; set; } /// /// 备注信息4 /// [SugarColumn(ColumnName="DHB034" )] public string Dhb034 { get; set; } /// /// 备注信息5 /// [SugarColumn(ColumnName="DHB035" )] public int? Dhb035 { get; set; } /// /// 备注信息6 /// [SugarColumn(ColumnName="DHB037" )] public int? Dhb037 { get; set; } /// /// 备注信息7 /// [SugarColumn(ColumnName="DHB036" )] public string Dhb036 { get; set; } /// /// 备注信息8 /// [SugarColumn(ColumnName="DHB038" )] public int? Dhb038 { get; set; } /// /// ERP源单内码 /// [SugarColumn(ColumnName="DHB039" )] public int? Dhb039 { get; set; } /// /// ERP源单类型 /// [SugarColumn(ColumnName="DHB040" )] public int? Dhb040 { get; set; } /// /// ERP订单内码 /// [SugarColumn(ColumnName="DHB041" )] public int? Dhb041 { get; set; } /// /// 是否检验,1为已检 /// [SugarColumn(ColumnName="ISCHECK" )] public int? Ischeck { get; set; } /// /// 仓库 /// [SugarColumn(ColumnName="DHB042" )] public string Dhb042 { get; set; } } }