1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| package com.iailab.module.data.http.dto;
|
| import lombok.Data;
| import org.springframework.stereotype.Component;
|
| import java.io.Serializable;
| import java.util.List;
|
| @Component
| @Data
| public class TagYearPeiJsonDto implements Serializable {
| private String sta;
| private String msg;
| private DATA res;
| @Data
| public static class DATA{
| YEAR yearData;
| List<MONTH> monthData;
| @Data
| public static class YEAR {
| //洗选计划量
| String xxPlan;
| //洗选产量
| String xxPerformance;
| //栈桥计划量
| String zqPlan;
| //栈桥产量
| String zqPerformance;
| }
| @Data
| public static class MONTH {
| //月份
| String month;
| //洗选计划量
| String xxPlan;
| //洗选产量
| String xxPerformance;
| //栈桥计划量
| String zqPlan;
| //栈桥产量
| String zqPerformance;
| }
| }
|
| }
|
|