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
| package com.by4cloud.platformx.business.vo;
|
| import lombok.Data;
|
| @Data
| public class ContractAmountAnalysisVo {
|
| private String compName;
|
| private String month1;
|
| private String month2;
|
| private String month3;
|
| private String month4;
|
| private String month5;
|
| private String month6;
|
| private String month7;
|
| private String month8;
|
| private String month9;
|
| private String month10;
|
| private String month11;
|
| private String month12;
|
|
| }
|
|