BaseUnitrate.cs 990 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Wms.Screen.SqlSugar.ZhongTian
  6. {
  7. [SugarTable("Base_UnitRate", "单位规则表")]
  8. public class BaseUnitrate
  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, 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. }