1
81041
2019-06-24 7a764effdf2e4f0ff2753f81cdb6f83bc8bd9b0b
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
package com.fgkj.test;
 
import java.io.Serializable;
 
public class Mon_vols implements Serializable{
    private int battggroupid;
    private float mon_vols;
    private int record_num;
    
    
    public int getBattggroupid() {
        return battggroupid;
    }
    public void setBattggroupid(int battggroupid) {
        this.battggroupid = battggroupid;
    }
    public float getMon_vols() {
        return mon_vols;
    }
    public void setMon_vols(float mon_vols) {
        this.mon_vols = mon_vols;
    }
    public int getRecord_num() {
        return record_num;
    }
    public void setRecord_num(int record_num) {
        this.record_num = record_num;
    }
    @Override
    public String toString() {
        return "Mon_vols [battggroupid=" + battggroupid + ", mon_vols="
                + mon_vols + ", record_num=" + record_num + "]";
    }
    
    
}