whyclxw
1 天以前 7a8d50965cb69ecc348a6b11d902409628012cd0
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
package com.whyc.dto.Statistic;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class Pwr7Stic {
    private String provice;
    private String city;
    private String country;
    private String stationName;
    private String company;
    //投入使用年限
    //全部不传
    //3年内 0~3年   3
    //5年内 0~5年   5
    //5年上 5年以上  1
    private Integer inuseYear;
    private Date pwrInUseTime;
    private String stationType;
    private Integer performance;//电池性能:1优秀,2一般,3预警 4严重 不传全部
    private String groupName;
    private Integer uid;
    private Integer pageNum;
    private Integer pageSize;
}