| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | | package com.dy.pipIrrGlobal.voSt; |  |   |  | import com.fasterxml.jackson.annotation.JsonPropertyOrder; |  | import lombok.Data; |  |   |  | import java.util.List; |  |   |  | /** |  |  * @Author: liurunyu |  |  * @Date: 2025/1/4 11:13 |  |  * @Description |  |  */ |  | @Data |  | @JsonPropertyOrder({ "yearGrp", "records" }) |  | public class VoStClientAmountYear { |  |   |  |     public List<Integer> yearGrp; |  |   |  |     public List<VoStClientAmountYearRecords> records; |  | } | 
 |