123456789101112131415161718192021222324252627282930313233343536 |
- package cn.com.taiji.domain.dto;
- import lombok.Data;
- /**
- * @author xhl
- * @date 2023/2/7
- */
- public class LeaceOutDto {
- /**
- * 批次号
- */
- private String batchNumber;
- /**
- * 数量
- */
- private Long count;
- public String getBatchNumber() {
- return batchNumber;
- }
- public void setBatchNumber(String batchNumber) {
- this.batchNumber = batchNumber;
- }
- public Long getCount() {
- return count;
- }
- public void setCount(Long count) {
- this.count = count;
- }
- }
|