whyclxw
5 天以前 bae185d2ff22c2537adc298cac905c9f5394d3c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.whyc.dto.Param;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class ParamAlmDto {
    private String provice;
    private String city;
    private String country;
    private Integer stationId;
    private Integer powerId;
    private Integer battgroupId;
    private List<Integer> almIdList;
    private Integer uid;
    private Integer pageNum;
    private Integer pageSize;
}