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;
|
}
|
|
|
}
|