whyclxw
1 天以前 add5c816a5281cf6b1df4a0988e8b3a0c2b59bee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.whyc.dto.Statistic;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class SticPwr7Res {
    private String provice;
    private String city;
    private String country;
    private String stationName;
    private String powerName;
    private String company;
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date inuseTime;
    private String stationType;
    private String groupName;
    private String performanceName;//电池性能:1优秀,2一般,3预警 4严重不传全部
}