提交 | 用户 | 时间
|
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 |
|
|
8 |
@Component |
|
9 |
@Data |
|
10 |
public class TagCurrentPerformanceJsonDto implements Serializable { |
|
11 |
private String sta; |
|
12 |
private String msg; |
|
13 |
private DATA res; |
|
14 |
|
|
15 |
@Data |
|
16 |
public static class DATA{ |
|
17 |
TODAY today; |
|
18 |
YESTERDAY yesterday; |
|
19 |
CURRENTMONTH currentMonth; |
|
20 |
CURRENTYEAR currentYear; |
|
21 |
@Data |
|
22 |
public static class TODAY{ |
|
23 |
//筛选产量 |
|
24 |
String xxPerformance; |
|
25 |
//栈桥运输量 |
|
26 |
String zqPerformance; |
|
27 |
} |
|
28 |
@Data |
|
29 |
public static class YESTERDAY{ |
|
30 |
//筛选产量 |
|
31 |
String xxPerformance; |
|
32 |
//栈桥运输量 |
|
33 |
String zqPerformance; |
|
34 |
} |
|
35 |
@Data |
|
36 |
public static class CURRENTMONTH{ |
|
37 |
//筛选产量 |
|
38 |
String xxPerformance; |
|
39 |
//栈桥运输量 |
|
40 |
String zqPerformance; |
|
41 |
} |
|
42 |
@Data |
|
43 |
public static class CURRENTYEAR{ |
|
44 |
//筛选产量 |
|
45 |
String xxPerformance; |
|
46 |
//栈桥运输量 |
|
47 |
String zqPerformance; |
|
48 |
} |
|
49 |
} |
|
50 |
} |