feiyu02
2024-11-19 752e00503f672ddfe2066afb6c235721a3a912b5
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
package cn.flightfeather.supervision.domain.entity;
 
import javax.persistence.*;
 
@Table(name = "sm_t_district")
public class District {
    @Id
    @Column(name = "D_DistrictID")
    private Integer dDistrictid;
 
    @Column(name = "P_ProvinceID")
    private Integer pProvinceid;
 
    @Column(name = "C_CityID")
    private Integer cCityid;
 
    @Column(name = "D_DistrictCode")
    private String dDistrictcode;
 
    @Column(name = "D_DistrictName")
    private String dDistrictname;
 
    @Column(name = "D_Station")
    private String dStation;
 
    /**
     * @return D_DistrictID
     */
    public Integer getdDistrictid() {
        return dDistrictid;
    }
 
    /**
     * @param dDistrictid
     */
    public void setdDistrictid(Integer dDistrictid) {
        this.dDistrictid = dDistrictid;
    }
 
    /**
     * @return P_ProvinceID
     */
    public Integer getpProvinceid() {
        return pProvinceid;
    }
 
    /**
     * @param pProvinceid
     */
    public void setpProvinceid(Integer pProvinceid) {
        this.pProvinceid = pProvinceid;
    }
 
    /**
     * @return C_CityID
     */
    public Integer getcCityid() {
        return cCityid;
    }
 
    /**
     * @param cCityid
     */
    public void setcCityid(Integer cCityid) {
        this.cCityid = cCityid;
    }
 
    /**
     * @return D_DistrictCode
     */
    public String getdDistrictcode() {
        return dDistrictcode;
    }
 
    /**
     * @param dDistrictcode
     */
    public void setdDistrictcode(String dDistrictcode) {
        this.dDistrictcode = dDistrictcode == null ? null : dDistrictcode.trim();
    }
 
    /**
     * @return D_DistrictName
     */
    public String getdDistrictname() {
        return dDistrictname;
    }
 
    /**
     * @param dDistrictname
     */
    public void setdDistrictname(String dDistrictname) {
        this.dDistrictname = dDistrictname == null ? null : dDistrictname.trim();
    }
 
    /**
     * @return D_Station
     */
    public String getdStation() {
        return dStation;
    }
 
    /**
     * @param dStation
     */
    public void setdStation(String dStation) {
        this.dStation = dStation == null ? null : dStation.trim();
    }
}