BaseUnitrate.cs 980 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. using WMS.BZModels;
  5. namespace wms.sqlsugar.model.cp
  6. {
  7. [Tenant("cp")]
  8. [SugarTable("Base_UnitRate")]
  9. public class BaseUnitrate : 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" , IsNullable = false )]
  25. public decimal RateQty { get; set; }
  26. /// <summary>
  27. /// ToUnitId
  28. /// </summary>
  29. [SugarColumn(ColumnDataType ="nchar" , IsNullable = false )]
  30. public string ToUnitId { get; set; }
  31. }
  32. }