using SqlSugar;
|
|
namespace CSFrameworkV5.QL.ql
|
{
|
[SugarTable("OverdueMaterial")]
|
public class SqlOverdueMaterial
|
{
|
[SugarColumn(IsPrimaryKey = true, ColumnDescription = "唯一标识符")]
|
public string ID { get; set; }
|
|
[SugarColumn(ColumnDescription = "客户简要名称")]
|
public string CustomerAbbreviation { get; set; }
|
|
[SugarColumn(ColumnDescription = "订单唯一标识号")]
|
public string OrderNumber { get; set; }
|
|
[SugarColumn(ColumnDescription = "产品名称")]
|
public string ProductName { get; set; }
|
|
[SugarColumn(ColumnDescription = "产品型号")]
|
public string ProductModel { get; set; }
|
|
[SugarColumn(ColumnDescription = "订单数量")]
|
public int OrderQuantity { get; set; }
|
|
[SugarColumn(ColumnDescription = "计划交货日期")]
|
public string DeliveryDate { get; set; }
|
|
[SugarColumn(ColumnDescription = "产品上线日期")]
|
public string OnlineDate { get; set; }
|
|
[SugarColumn(ColumnDescription = "欠料名称")]
|
public string ShortageName { get; set; }
|
|
[SugarColumn(ColumnDescription = "欠料编号")]
|
public string ShortageNumber { get; set; }
|
|
[SugarColumn(ColumnDescription = "欠料数量")]
|
public int ShortageQuantity { get; set; }
|
|
[SugarColumn(ColumnDescription = "欠料数量单位")]
|
public string Unit { get; set; }
|
|
[SugarColumn(ColumnDescription = "要求欠料到位时间")]
|
public string RequiredArrivalDate { get; set; }
|
|
[SugarColumn(ColumnDescription = "欠料逾期时间")]
|
public string OverdueDate { get; set; }
|
|
[SugarColumn(ColumnDescription = "负责处理欠料问题人员")]
|
public string ResponsiblePerson { get; set; }
|
}
|
}
|