package cn.flightfeather.thirdapp.bean; 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; } }