liurunyu
2025-06-05 f8b2e59a82702a790c383a8ecd90c708c76e2488
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;
}