lxw
2023-08-15 160e150009b51a39fa95d9462c3798ba28d51a09
src/main/java/com/whyc/dto/BattTestDataDTO.java
@@ -1,6 +1,8 @@
package com.whyc.dto;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import java.sql.Date;
/**
 * 电池组测试数据 传输类
@@ -14,12 +16,79 @@
    /**
     * 电池测试类型
     */
    private Integer type;
    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;
    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;
    }
}