ZhuDongming
2020-04-02 22f8bf0630187800c47c3907eecfedcc13abc540
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
package com.moral.entity;
 
import java.io.Serializable;
 
public class Density implements Serializable {
 
    private Integer id;
 
    private Integer provinceCode;
 
    private Integer professionId;
 
    private Byte tech;
 
    private String limitVal;
 
    private String valUnit;
 
    private String extA;
 
    private Integer extB;
 
    private static final long serialVersionUID = 1L;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getProvinceCode() {
        return provinceCode;
    }
 
    public void setProvinceCode(Integer provinceCode) {
        this.provinceCode = provinceCode;
    }
 
    public Integer getPrefessionId() {
        return professionId;
    }
 
    public void setPrefessionId(Integer prefessionId) {
        this.professionId = prefessionId;
    }
 
    public Byte getTech() {
        return tech;
    }
 
    public void setTech(Byte tech) {
        this.tech = tech;
    }
 
    public String getLimitVal() {
        return limitVal;
    }
 
    public void setLimitVal(String limitVal) {
        this.limitVal = limitVal;
    }
 
    public String getValUnit() {
        return valUnit;
    }
 
    public void setValUnit(String valUnit) {
        this.valUnit = valUnit;
    }
 
    public String getExtA() {
        return extA;
    }
 
    public void setExtA(String extA) {
        this.extA = extA;
    }
 
    public Integer getExtB() {
        return extB;
    }
 
    public void setExtB(Integer extB) {
        this.extB = extB;
    }
    
    
 
}