whyclxw
2025-06-12 10574a67b78e2578fc10e8fbe83965bf4832c36a
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
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;
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date inuseStartTime;//开始时间
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date inuseEndTime;//结束时间
    private String stationType;
    private Integer performance;//电池性能:1优秀,2劣化,3损坏 4未放电 不传全部
    private String groupName;
    private Integer uid;
    private Integer pageNum;
    private Integer pageSize;
}