namespace Admin.NET.Plugin.AiDOP.ProcurementExecution.Entity; /// /// 供应商发货单主表(scm_shd) /// [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; } }