1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
package com.fgkj.dto;
 
import java.io.Serializable;
 
public class Battmon_testcap implements Serializable{
    private int num;
    private float monvolstd;
    private float moncapstd;
    private String battproducer;
    private String battmodel;
    private float test_cap;
    private float mon_vol;
    private String note;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public float getMonvolstd() {
        return monvolstd;
    }
    public void setMonvolstd(float monvolstd) {
        this.monvolstd = monvolstd;
    }
    public float getMoncapstd() {
        return moncapstd;
    }
    public void setMoncapstd(float moncapstd) {
        this.moncapstd = moncapstd;
    }
    public String getBattproducer() {
        return battproducer;
    }
    public void setBattproducer(String battproducer) {
        this.battproducer = battproducer;
    }
    public String getBattmodel() {
        return battmodel;
    }
    public void setBattmodel(String battmodel) {
        this.battmodel = battmodel;
    }
    public float getTest_cap() {
        return test_cap;
    }
    public void setTest_cap(float test_cap) {
        this.test_cap = test_cap;
    }
    public float getMon_vol() {
        return mon_vol;
    }
    public void setMon_vol(float mon_vol) {
        this.mon_vol = mon_vol;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "Battmon_testcap [num=" + num + ", monvolstd=" + monvolstd + ", moncapstd=" + moncapstd
                + ", battproducer=" + battproducer + ", battmodel=" + battmodel + ", test_cap=" + test_cap
                + ", mon_vol=" + mon_vol + ", note=" + note + "]";
    }
    
 
}