feiyu02
2024-08-15 196bb14112448857a885e32dc4149e308e00b01a
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package cn.flightfeather.supervision.domain.entity;
 
import javax.persistence.*;
 
@Table(name = "sm_t_town")
public class Town {
    @Id
    @Column(name = "T_TownID")
    private Integer tTownid;
 
    @Column(name = "D_DistrictID")
    private Integer dDistrictid;
 
    @Column(name = "C_CityID")
    private Integer cCityid;
 
    @Column(name = "P_ProvinceID")
    private Integer pProvinceid;
 
    @Column(name = "T_TownCode")
    private String tTowncode;
 
    @Column(name = "T_TownName")
    private String tTownname;
 
    @Column(name = "T_Station")
    private String tStation;
 
    /**
     * @return T_TownID
     */
    public Integer gettTownid() {
        return tTownid;
    }
 
    /**
     * @param tTownid
     */
    public void settTownid(Integer tTownid) {
        this.tTownid = tTownid;
    }
 
    /**
     * @return D_DistrictID
     */
    public Integer getdDistrictid() {
        return dDistrictid;
    }
 
    /**
     * @param dDistrictid
     */
    public void setdDistrictid(Integer dDistrictid) {
        this.dDistrictid = dDistrictid;
    }
 
    /**
     * @return C_CityID
     */
    public Integer getcCityid() {
        return cCityid;
    }
 
    /**
     * @param cCityid
     */
    public void setcCityid(Integer cCityid) {
        this.cCityid = cCityid;
    }
 
    /**
     * @return P_ProvinceID
     */
    public Integer getpProvinceid() {
        return pProvinceid;
    }
 
    /**
     * @param pProvinceid
     */
    public void setpProvinceid(Integer pProvinceid) {
        this.pProvinceid = pProvinceid;
    }
 
    /**
     * @return T_TownCode
     */
    public String gettTowncode() {
        return tTowncode;
    }
 
    /**
     * @param tTowncode
     */
    public void settTowncode(String tTowncode) {
        this.tTowncode = tTowncode == null ? null : tTowncode.trim();
    }
 
    /**
     * @return T_TownName
     */
    public String gettTownname() {
        return tTownname;
    }
 
    /**
     * @param tTownname
     */
    public void settTownname(String tTownname) {
        this.tTownname = tTownname == null ? null : tTownname.trim();
    }
 
    /**
     * @return T_Station
     */
    public String gettStation() {
        return tStation;
    }
 
    /**
     * @param tStation
     */
    public void settStation(String tStation) {
        this.tStation = tStation == null ? null : tStation.trim();
    }
}