| | |
| | | package com.gs.xiaomi.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import com.fasterxml.jackson.databind.JsonNode; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | |
| | | @Data |
| | | public class BCS101ResponseBody { |
| | | |
| | | /** |
| | | * SN列表 |
| | | */ |
| | | @JsonProperty("snList") |
| | | private List<String> snList; |
| | | private List<SnListItemDto> snList; |
| | | |
| | | @JsonProperty("reelList") |
| | | private List<String> reelList; |
| | | private List<Object> reelList; |
| | | |
| | | /** |
| | | * 箱信息列表 |
| | | */ |
| | | @JsonProperty("cartonList") |
| | | private List<String> cartonList; |
| | | private List<CartonListItemDto> cartonList; |
| | | |
| | | @JsonProperty("currentPage") |
| | | private Integer currentPage; |
| | |
| | | private String productionTime; |
| | | |
| | | @JsonProperty("productionQty") |
| | | private Integer productionQty; |
| | | private String productionQty; // 修改为String类型以匹配JSON中的"0.000"值 |
| | | } |