LeaceOutDto.java 549 B

123456789101112131415161718192021222324252627282930313233343536
  1. package cn.com.taiji.domain.dto;
  2. import lombok.Data;
  3. /**
  4. * @author xhl
  5. * @date 2023/2/7
  6. */
  7. public class LeaceOutDto {
  8. /**
  9. * 批次号
  10. */
  11. private String batchNumber;
  12. /**
  13. * 数量
  14. */
  15. private Long count;
  16. public String getBatchNumber() {
  17. return batchNumber;
  18. }
  19. public void setBatchNumber(String batchNumber) {
  20. this.batchNumber = batchNumber;
  21. }
  22. public Long getCount() {
  23. return count;
  24. }
  25. public void setCount(Long count) {
  26. this.count = count;
  27. }
  28. }