package com.zy.common.web.param;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
@Data
|
public class SearchEmptyParam {
|
/**
|
* 申请时间
|
*/
|
@JsonProperty(value = "applyTime")
|
private String applyTime;
|
|
/**
|
* 仓库编码
|
*/
|
@JsonProperty(value = "warehouse")
|
private String warehouse;
|
|
/**
|
* 入库口编号
|
*/
|
@JsonProperty(value = "fromPort")
|
private String fromPort;
|
|
/**
|
* 任务类型
|
*/
|
@JsonProperty(value = "taskType")
|
private Integer taskType;
|
|
/**
|
* 空托盘数量
|
*/
|
@JsonProperty(value = "palletNum")
|
private Integer palletNum;
|
}
|