ptBaseUnitrate.cs 1005 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.pt
  6. {
  7. [Tenant("pt")]
  8. [SugarTable("Base_UnitRate")]
  9. public partial class ptBaseUnitrate : BaseModel
  10. {
  11. /// <summary>
  12. /// WarehouseId
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  15. public long WarehouseId { get; set; }
  16. /// <summary>
  17. /// FromUnitId
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  20. public long FromUnitId { get; set; }
  21. /// <summary>
  22. /// RateQty
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "numeric", Length = 18, IsNullable = false)]
  25. public decimal RateQty { get; set; }
  26. /// <summary>
  27. /// ToUnitId
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nchar", Length = 10, IsNullable = false)]
  30. public string ToUnitId { get; set; }
  31. }
  32. }