package com.gs.xiaomi.dto;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
@Data
|
public class BCS101ResponseBody {
|
|
@JsonProperty("snList")
|
private List<String> snList;
|
|
@JsonProperty("reelList")
|
private List<String> reelList;
|
|
@JsonProperty("cartonList")
|
private List<String> cartonList;
|
|
@JsonProperty("currentPage")
|
private Integer currentPage;
|
|
@JsonProperty("pageSize")
|
private Integer pageSize;
|
|
@JsonProperty("totalPage")
|
private Integer totalPage;
|
|
@JsonProperty("productionOrder")
|
private String productionOrder;
|
|
@JsonProperty("productionLine")
|
private String productionLine;
|
|
@JsonProperty("productionTime")
|
private String productionTime;
|
|
@JsonProperty("productionQty")
|
private Integer productionQty;
|
}
|