| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- namespace Admin.NET.Plugin.AiDOP.ProcurementExecution.Entity;
- /// <summary>
- /// 供应商发货单主表(scm_shd)
- /// </summary>
- [SugarTable("scm_shd")]
- public class ScmShd
- {
- [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "sh_purchase_id", IsNullable = true)]
- public long? ShPurchaseId { get; set; }
- [SugarColumn(ColumnName = "sh_purchase_name", IsNullable = true, Length = 255)]
- public string? ShPurchaseName { get; set; }
- [SugarColumn(ColumnName = "sh_purchase_num", IsNullable = true, Length = 255)]
- public string? ShPurchaseNum { get; set; }
- [SugarColumn(ColumnName = "sh_purchase_address", IsNullable = true, Length = 255)]
- public string? ShPurchaseAddress { get; set; }
- [SugarColumn(ColumnName = "sh_purchase_lxr", IsNullable = true, Length = 255)]
- public string? ShPurchaseLxr { get; set; }
- [SugarColumn(ColumnName = "sh_purchase_phone", IsNullable = true, Length = 255)]
- public string? ShPurchasePhone { get; set; }
- [SugarColumn(ColumnName = "client", IsNullable = true)]
- public long? Client { get; set; }
- [SugarColumn(ColumnName = "delivery_Address", IsNullable = true, Length = 255)]
- public string? DeliveryAddress { get; set; }
- [SugarColumn(ColumnName = "expected_consignee", IsNullable = true, Length = 255)]
- public string? ExpectedConsignee { get; set; }
- [SugarColumn(ColumnName = "consignee_phone", IsNullable = true, Length = 255)]
- public string? ConsigneePhone { get; set; }
- [SugarColumn(ColumnName = "estimated_delivery_date", IsNullable = true)]
- public DateTime? EstimatedDeliveryDate { get; set; }
- [SugarColumn(ColumnName = "po_billno", IsNullable = true, Length = 255)]
- public string? PoBillNo { get; set; }
- [SugarColumn(ColumnName = "shddh", IsNullable = true, Length = 255)]
- public string? Shddh { get; set; }
- [SugarColumn(ColumnName = "jhshrq", IsNullable = true, Length = 50)]
- public string? Jhshrq { get; set; }
- [SugarColumn(ColumnName = "tjrid", IsNullable = true, Length = 50)]
- public string? Tjrid { get; set; }
- [SugarColumn(ColumnName = "tjrxm", IsNullable = true, Length = 50)]
- public string? Tjrxm { get; set; }
- [SugarColumn(ColumnName = "tjrq", IsNullable = true, Length = 50)]
- public string? Tjrq { get; set; }
- [SugarColumn(ColumnName = "scbq", IsNullable = true)]
- public int? Scbq { get; set; }
- [SugarColumn(ColumnName = "chbg", IsNullable = true)]
- public string? Chbg { get; set; }
- [SugarColumn(ColumnName = "sfpc", IsNullable = true)]
- public int? Sfpc { get; set; }
- [SugarColumn(ColumnName = "pcsm", IsNullable = true)]
- public string? Pcsm { get; set; }
- [SugarColumn(ColumnName = "wlsc", IsNullable = true, Length = 500)]
- public string? Wlsc { get; set; }
- [SugarColumn(ColumnName = "yjdhrq", IsNullable = true, Length = 500)]
- public string? Yjdhrq { get; set; }
- [SugarColumn(ColumnName = "state", IsNullable = true)]
- public int? State { get; set; }
- [SugarColumn(ColumnName = "shzt", IsNullable = true, Length = 50)]
- public string? Shzt { get; set; }
- [SugarColumn(ColumnName = "wldh", IsNullable = true, Length = 50)]
- public string? Wldh { get; set; }
- [SugarColumn(ColumnName = "dycs", IsNullable = true)]
- public int? Dycs { get; set; }
- }
|