| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- namespace Admin.NET.Plugin.AiDOP.Supply;
- /// <summary>
- /// 物料交货单(srm_polist_ds)
- /// </summary>
- [SugarTable("srm_polist_ds", "PO行交货单")]
- public class PolistDeliverySchedule
- {
- [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = false)]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "domain", Length = 8)]
- public string Domain { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "icdsid")]
- public long IcdsId { get; set; }
- [SugarColumn(ColumnName = "dsnum", Length = 128)]
- public string DsNum { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "status", Length = 10)]
- public string Status { get; set; } = "N";
- [SugarColumn(ColumnName = "itemnum", Length = 128)]
- public string ItemNum { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "um", Length = 124)]
- public string Um { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "purgroup", Length = 50)]
- public string PurGroup { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "suppliercode", Length = 50)]
- public string SupplierCode { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "supplier", Length = 50)]
- public string Supplier { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "submitdate", IsNullable = true)]
- public DateTime? SubmitDate { get; set; }
- [SugarColumn(ColumnName = "requestdate", IsNullable = true)]
- public DateTime? RequestDate { get; set; }
- [SugarColumn(ColumnName = "needdate", IsNullable = true)]
- public DateTime? NeedDate { get; set; }
- [SugarColumn(ColumnName = "ponumber", Length = 50)]
- public string PoNumber { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "poline")]
- public int PoLine { get; set; }
- [SugarColumn(ColumnName = "schedqty")]
- public decimal SchedQty { get; set; }
- [SugarColumn(ColumnName = "lastsentdate", IsNullable = true)]
- public DateTime? LastSentDate { get; set; }
- [SugarColumn(ColumnName = "lastsentqty")]
- public decimal LastSentQty { get; set; }
- [SugarColumn(ColumnName = "sentqty")]
- public decimal SentQty { get; set; }
- [SugarColumn(ColumnName = "restqty")]
- public decimal RestQty { get; set; }
- [SugarColumn(ColumnName = "createuser", Length = 24, IsNullable = true)]
- public string? CreateUser { get; set; }
- [SugarColumn(ColumnName = "updateuser", Length = 24, IsNullable = true)]
- public string? UpdateUser { get; set; }
- [SugarColumn(ColumnName = "createtime", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnName = "updatetime", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- [SugarColumn(ColumnName = "remarks", Length = 500)]
- public string Remarks { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "isactive")]
- public int IsActive { get; set; } = 1;
- [SugarColumn(ColumnName = "returnqty", IsNullable = true)]
- public decimal? ReturnQty { get; set; }
- [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
- public long? TenantId { get; set; }
- }
|