riku
2021-02-25 e102578ebfc95c27aeb13dce13fb82af53a2bead
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
package cn.flightfeather.thirdapp.bean.entity;
 
import org.greenrobot.greendao.annotation.Entity;
import org.greenrobot.greendao.annotation.Id;
import org.greenrobot.greendao.annotation.Property;
import org.greenrobot.greendao.annotation.Generated;
 
/**
 * Created by note_ff_1602 on 2018/1/19.
 */
@Entity
public class District {
    @Id
    private Long districtid;
    @Property
    private Long provinceid;
    @Property
    private Long cityid;
    @Property
    private String districtcode;
    @Property
    private String districtname;
    @Property
    private String station;
    @Generated(hash = 146107624)
    public District(Long districtid, Long provinceid, Long cityid,
            String districtcode, String districtname, String station) {
        this.districtid = districtid;
        this.provinceid = provinceid;
        this.cityid = cityid;
        this.districtcode = districtcode;
        this.districtname = districtname;
        this.station = station;
    }
    @Generated(hash = 1876777828)
    public District() {
    }
    public Long getDistrictid() {
        return this.districtid;
    }
    public void setDistrictid(Long districtid) {
        this.districtid = districtid;
    }
    public Long getProvinceid() {
        return this.provinceid;
    }
    public void setProvinceid(Long provinceid) {
        this.provinceid = provinceid;
    }
    public Long getCityid() {
        return this.cityid;
    }
    public void setCityid(Long cityid) {
        this.cityid = cityid;
    }
    public String getDistrictcode() {
        return this.districtcode;
    }
    public void setDistrictcode(String districtcode) {
        this.districtcode = districtcode;
    }
    public String getDistrictname() {
        return this.districtname;
    }
    public void setDistrictname(String districtname) {
        this.districtname = districtname;
    }
    public String getStation() {
        return this.station;
    }
    public void setStation(String station) {
        this.station = station;
    }
 
}