1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
/**
 * 电池电阻/电导数据
 */
@Alias("BattResDataInf")
@TableName(schema = "db_batt_testdata", value = "tb_battresdata_inf")
public class BattResDataInf {
 
    @TableId
    private Long         num;
    @TableField(value = "BattGroupId")
    private Integer        battGroupId;
    private Integer        testRecordCount;
    private Integer        testRecordCountEx;
    private Integer        testType;
    private Integer        dataNew;
    private Integer        dataAvailable;
    @TableField(value = "test_starttime")
    private Date        testStartTime;
    @TableField(value = "test_starttime_ex")
    private Date        testStartTimeEx;
    @TableField(value = "test_devtype")
    private Integer        testDevType;
    private Date        recordTime;
    private Float        groupVol;
    private Float        testCurr;
    @TableField(value = "upload_usr_id")
    private Integer        uploadUserId;
    private Integer        uploadClientType;
 
    public Long getNum() {
        return num;
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public Integer getBattGroupId() {
        return battGroupId;
    }
 
    public void setBattGroupId(Integer battGroupId) {
        this.battGroupId = battGroupId;
    }
 
    public Integer getTestRecordCount() {
        return testRecordCount;
    }
 
    public void setTestRecordCount(Integer testRecordCount) {
        this.testRecordCount = testRecordCount;
    }
 
    public Integer getTestRecordCountEx() {
        return testRecordCountEx;
    }
 
    public void setTestRecordCountEx(Integer testRecordCountEx) {
        this.testRecordCountEx = testRecordCountEx;
    }
 
    public Integer getTestType() {
        return testType;
    }
 
    public void setTestType(Integer testType) {
        this.testType = testType;
    }
 
    public Integer getDataNew() {
        return dataNew;
    }
 
    public void setDataNew(Integer dataNew) {
        this.dataNew = dataNew;
    }
 
    public Integer getDataAvailable() {
        return dataAvailable;
    }
 
    public void setDataAvailable(Integer dataAvailable) {
        this.dataAvailable = dataAvailable;
    }
 
    public Date getTestStartTime() {
        return testStartTime;
    }
 
    public void setTestStartTime(Date testStartTime) {
        this.testStartTime = testStartTime;
    }
 
    public Date getTestStartTimeEx() {
        return testStartTimeEx;
    }
 
    public void setTestStartTimeEx(Date testStartTimeEx) {
        this.testStartTimeEx = testStartTimeEx;
    }
 
    public Integer getTestDevType() {
        return testDevType;
    }
 
    public void setTestDevType(Integer testDevType) {
        this.testDevType = testDevType;
    }
 
    public Date getRecordTime() {
        return recordTime;
    }
 
    public void setRecordTime(Date recordTime) {
        this.recordTime = recordTime;
    }
 
    public Float getGroupVol() {
        return groupVol;
    }
 
    public void setGroupVol(Float groupVol) {
        this.groupVol = groupVol;
    }
 
    public Float getTestCurr() {
        return testCurr;
    }
 
    public void setTestCurr(Float testCurr) {
        this.testCurr = testCurr;
    }
 
    public Integer getUploadUserId() {
        return uploadUserId;
    }
 
    public void setUploadUserId(Integer uploadUserId) {
        this.uploadUserId = uploadUserId;
    }
 
    public Integer getUploadClientType() {
        return uploadClientType;
    }
 
    public void setUploadClientType(Integer uploadClientType) {
        this.uploadClientType = uploadClientType;
    }
}