| | |
| | | package com.whyc.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | import java.sql.Date; |
| | | |
| | | /** |
| | | * 电池组测试数据 传输类 |
| | | */ |
| | | @JsonIgnoreProperties(ignoreUnknown = true) |
| | | public class BattTestDataDTO { |
| | | |
| | | /**省*/ |
| | |
| | | * 电池测试类型 |
| | | */ |
| | | private Integer testType; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd",iso = DateTimeFormat.ISO.DATE) |
| | | private Date recordStartTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd",iso = DateTimeFormat.ISO.DATE) |
| | | private Date recordEndTime; |
| | | /** |
| | | * 放电类型 |
| | | * 类型:0-全部;1-核容放电;2-核容充电;3-监测放电;4-监测充电;5-停电放电 |
| | | */ |
| | | private Integer dischargeType; |
| | | |
| | | private Long uId; |
| | | |
| | | private Integer jcDischargeFilterTime; |
| | | private Integer jcChargeFilterTime; |
| | | |
| | | public String getStationName1() { |
| | | return stationName1; |
| | |
| | | public void setUId(Long uId) { |
| | | this.uId = uId; |
| | | } |
| | | |
| | | public Integer getJcDischargeFilterTime() { |
| | | return jcDischargeFilterTime; |
| | | } |
| | | |
| | | public void setJcDischargeFilterTime(Integer jcDischargeFilterTime) { |
| | | this.jcDischargeFilterTime = jcDischargeFilterTime; |
| | | } |
| | | |
| | | public Integer getJcChargeFilterTime() { |
| | | return jcChargeFilterTime; |
| | | } |
| | | |
| | | public void setJcChargeFilterTime(Integer jcChargeFilterTime) { |
| | | this.jcChargeFilterTime = jcChargeFilterTime; |
| | | } |
| | | } |