whyclxw
2024-04-17 b49b5bd7da878564a91ea09ec1a3a63404a21694
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
package com.table.badbatt;
 
import java.io.Serializable;
 
public class Batt_param_low implements Serializable {
 
    private Integer num;
    private Integer low_type;   //1:µçѹ 2:µçÈÝ 3:µçµ¼
    private Integer low_nametype;//0:µÍ 1:´ÎµÍ 2:¸æ¾¯ 3:¸ü»»
    private Float  low_value;
    private Integer low_method; // 0:±ê³Æ 1:ƽ¾ùÖµ
    
    public Batt_param_low() {
        super();
        // TODO Auto-generated constructor stub
    }
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public Integer getLow_type() {
        return low_type;
    }
 
    public void setLow_type(Integer low_type) {
        this.low_type = low_type;
    }
 
    
 
    public Integer getLow_nametype() {
        return low_nametype;
    }
 
    public void setLow_nametype(Integer low_nametype) {
        this.low_nametype = low_nametype;
    }
 
    public Float getLow_value() {
        return low_value;
    }
 
    public void setLow_value(Float low_value) {
        this.low_value = low_value;
    }
 
    
    public Integer getLow_method() {
        return low_method;
    }
 
    public void setLow_method(Integer low_method) {
        this.low_method = low_method;
    }
 
    @Override
    public String toString() {
        return "Batt_param_low [num=" + num + ", low_type=" + low_type
                + ", low_nametype=" + low_nametype + ", low_value=" + low_value
                + ", low_method=" + low_method + "]";
    }
 
    
    
}