package com.whyc.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.sql.Date;
|
|
/**
|
* 电池组测试数据 传输类
|
*/
|
public class BattTestDataDTO {
|
|
/**省*/
|
private String stationName1;
|
private Integer stationId;
|
private String battGroupName;
|
/**
|
* 电池测试类型
|
*/
|
private Integer testType;
|
@DateTimeFormat(pattern = "yyyy-MM-dd",iso = DateTimeFormat.ISO.DATE)
|
private Date recordStartTime;
|
@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 setStationName1(String stationName1) {
|
this.stationName1 = stationName1;
|
}
|
|
public Integer getStationId() {
|
return stationId;
|
}
|
|
public void setStationId(Integer stationId) {
|
this.stationId = stationId;
|
}
|
|
public String getBattGroupName() {
|
return battGroupName;
|
}
|
|
public void setBattGroupName(String battGroupName) {
|
this.battGroupName = battGroupName;
|
}
|
|
public Integer getTestType() {
|
return testType;
|
}
|
|
public void setTestType(Integer testType) {
|
this.testType = testType;
|
}
|
|
public Date getRecordStartTime() {
|
return recordStartTime;
|
}
|
|
public void setRecordStartTime(Date recordStartTime) {
|
this.recordStartTime = recordStartTime;
|
}
|
|
public Date getRecordEndTime() {
|
return recordEndTime;
|
}
|
|
public void setRecordEndTime(Date recordEndTime) {
|
this.recordEndTime = recordEndTime;
|
}
|
|
public Integer getDischargeType() {
|
return dischargeType;
|
}
|
|
public void setDischargeType(Integer dischargeType) {
|
this.dischargeType = dischargeType;
|
}
|
|
public Long getUId() {
|
return uId;
|
}
|
|
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;
|
}
|
}
|