Material4UnitPrice.java 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.jsh.erp.datasource.vo;
  2. import com.jsh.erp.datasource.entities.Unit;
  3. import lombok.Data;
  4. import java.math.BigDecimal;
  5. /**
  6. * @Description TODO
  7. * @Author MS.BLUE
  8. * @Date 2025-04-15
  9. */
  10. @Data
  11. public class Material4UnitPrice extends Unit {
  12. /**
  13. *基础单位 销售价格
  14. */
  15. private BigDecimal basicUnitPrice;
  16. /**
  17. *其他单位 销售价格
  18. */
  19. private BigDecimal otherUnitPrice;
  20. /**
  21. *其他单位2 销售价格
  22. */
  23. private BigDecimal otherUnitTwoPrice;
  24. /**
  25. *其他单位3 销售价格
  26. */
  27. private BigDecimal otherUnitThreePrice;
  28. /**
  29. *基础单位 基础数量
  30. */
  31. private BigDecimal basicUnitNumber;
  32. /**
  33. *其他单位 基础数量
  34. */
  35. private BigDecimal otherUnitNumber;
  36. /**
  37. *其他单位2 基础数量
  38. */
  39. private BigDecimal otherUnitTwoNumber;
  40. /**
  41. *其他单位3 基础数量
  42. */
  43. private BigDecimal otherUnitThreeNumber;
  44. }