package com.zy.asrs.entity.param;
|
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* Created by vincent on 2020/6/13
|
*/
|
@Data
|
public class DigitalTwinRecentInAndOutBoundParam {
|
private int areaId;
|
|
// 开始日期,格式:20251022。不传默认7天。
|
private String startDate;
|
|
// 结束日期,格式:20251022。配合startDate使用。
|
private String endDate;
|
|
private String memo;
|
|
private List<DataCode> dataCodeList;
|
|
@Data
|
public static class DataCode {
|
// 库存日期,格式:2025-10-22
|
private String boundDate;
|
// 入库数量
|
private Long inBoundNum;
|
// 数字 出库数量
|
private Long outBoundNum;
|
|
}
|
|
}
|