cpBaseUnitrate.cs 1017 B

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