DeliveryExceptionMaster.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. namespace Admin.NET.Plugin.AiDOP.Supply;
  2. /// <summary>
  3. /// 交货单异常记录(DeliveryExceptionMaster)
  4. /// </summary>
  5. [SugarTable("DeliveryExceptionMaster", "交货单异常记录")]
  6. public class DeliveryExceptionMaster
  7. {
  8. [SugarColumn(ColumnName = "RecID", IsIdentity = false)]
  9. public long RecID { get; set; }
  10. [SugarColumn(ColumnName = "Domain", Length = 8, IsNullable = true)]
  11. public string? Domain { get; set; }
  12. [SugarColumn(ColumnName = "Icdsid", IsNullable = true)]
  13. public long? IcdsId { get; set; }
  14. [SugarColumn(ColumnName = "OptTime", IsNullable = true)]
  15. public DateTime? OptTime { get; set; }
  16. [SugarColumn(ColumnName = "ItemNum", Length = 30, IsNullable = true)]
  17. public string? ItemNum { get; set; }
  18. [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
  19. public string? Remark { get; set; }
  20. [SugarColumn(ColumnName = "NeedQty", IsNullable = true)]
  21. public decimal? NeedQty { get; set; }
  22. [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
  23. public long? TenantId { get; set; }
  24. }