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