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
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 City {
    @Id
    private Long cityId;
    @Property
    private Long pronvinceid;
    @Property
    private String citycode;
    @Property
    private String cityname;
    @Property
    private String station;
    @Generated(hash = 872614616)
    public City(Long cityId, Long pronvinceid, String citycode, String cityname,
            String station) {
        this.cityId = cityId;
        this.pronvinceid = pronvinceid;
        this.citycode = citycode;
        this.cityname = cityname;
        this.station = station;
    }
    @Generated(hash = 750791287)
    public City() {
    }
    public Long getCityId() {
        return this.cityId;
    }
    public void setCityId(Long cityId) {
        this.cityId = cityId;
    }
    public Long getPronvinceid() {
        return this.pronvinceid;
    }
    public void setPronvinceid(Long pronvinceid) {
        this.pronvinceid = pronvinceid;
    }
    public String getCitycode() {
        return this.citycode;
    }
    public void setCitycode(String citycode) {
        this.citycode = citycode;
    }
    public String getCityname() {
        return this.cityname;
    }
    public void setCityname(String cityname) {
        this.cityname = cityname;
    }
    public String getStation() {
        return this.station;
    }
    public void setStation(String station) {
        this.station = station;
    }
 
 
}