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; }