package cn.flightfeather.thirdapp.bean.entity;
|
|
import org.greenrobot.greendao.annotation.Entity;
|
import org.greenrobot.greendao.annotation.Generated;
|
import org.greenrobot.greendao.annotation.Id;
|
import org.greenrobot.greendao.annotation.Property;
|
import org.greenrobot.greendao.annotation.Transient;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* Created by note_ff_1602 on 2017/12/26.
|
*/
|
@Entity
|
public class Scense implements Serializable{
|
private static final long serialVersionUID = 10L;
|
@Id
|
private String guid;
|
@Property
|
private String name;
|
@Property
|
private Byte typeid;
|
@Property
|
private String type;
|
@Property
|
private Byte scensesubtypeid;
|
@Property
|
private String scensesubtype;
|
@Property
|
private String location;
|
@Property
|
private Double longitude;
|
@Property
|
private Double latitude;
|
@Property
|
private String provincecode;
|
@Property
|
private String provincename;
|
@Property
|
private String citycode;
|
@Property
|
private String cityname;
|
@Property
|
private String districtcode;
|
@Property
|
private String districtname;
|
@Property
|
private String towncode;
|
@Property
|
private String townname;
|
@Property
|
private String contactst;
|
@Property
|
private String contactswx;
|
@Property
|
private String contacts;
|
@Transient
|
private int displayID;
|
@Transient
|
private int monitorNum;
|
@Transient
|
private int inspectedNum;
|
@Transient
|
private boolean selected;
|
@Property
|
private Date createdate;
|
@Property
|
private Date updatedate;
|
@Property
|
private String extension1;
|
@Property
|
private String extension2;
|
@Property
|
private int index;
|
@Property
|
private String remark;
|
@Generated(hash = 1409378172)
|
public Scense(String guid, String name, Byte typeid, String type, Byte scensesubtypeid,
|
String scensesubtype, String location, Double longitude, Double latitude,
|
String provincecode, String provincename, String citycode, String cityname,
|
String districtcode, String districtname, String towncode, String townname,
|
String contactst, String contactswx, String contacts, Date createdate,
|
Date updatedate, String extension1, String extension2, int index, String remark) {
|
this.guid = guid;
|
this.name = name;
|
this.typeid = typeid;
|
this.type = type;
|
this.scensesubtypeid = scensesubtypeid;
|
this.scensesubtype = scensesubtype;
|
this.location = location;
|
this.longitude = longitude;
|
this.latitude = latitude;
|
this.provincecode = provincecode;
|
this.provincename = provincename;
|
this.citycode = citycode;
|
this.cityname = cityname;
|
this.districtcode = districtcode;
|
this.districtname = districtname;
|
this.towncode = towncode;
|
this.townname = townname;
|
this.contactst = contactst;
|
this.contactswx = contactswx;
|
this.contacts = contacts;
|
this.createdate = createdate;
|
this.updatedate = updatedate;
|
this.extension1 = extension1;
|
this.extension2 = extension2;
|
this.index = index;
|
this.remark = remark;
|
}
|
@Generated(hash = 1041424919)
|
public Scense() {
|
}
|
public String getGuid() {
|
return this.guid;
|
}
|
public void setGuid(String guid) {
|
this.guid = guid;
|
}
|
public String getName() {
|
return this.name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public Byte getTypeid() {
|
return this.typeid;
|
}
|
public void setTypeid(Byte typeid) {
|
this.typeid = typeid;
|
}
|
public String getType() {
|
return this.type;
|
}
|
public void setType(String type) {
|
this.type = type;
|
}
|
public Byte getScensesubtypeid() {
|
return this.scensesubtypeid;
|
}
|
public void setScensesubtypeid(Byte scensesubtypeid) {
|
this.scensesubtypeid = scensesubtypeid;
|
}
|
public String getScensesubtype() {
|
return this.scensesubtype;
|
}
|
public void setScensesubtype(String scensesubtype) {
|
this.scensesubtype = scensesubtype;
|
}
|
public String getLocation() {
|
return this.location;
|
}
|
public void setLocation(String location) {
|
this.location = location;
|
}
|
public Double getLongitude() {
|
return this.longitude;
|
}
|
public void setLongitude(Double longitude) {
|
this.longitude = longitude;
|
}
|
public Double getLatitude() {
|
return this.latitude;
|
}
|
public void setLatitude(Double latitude) {
|
this.latitude = latitude;
|
}
|
public String getProvincecode() {
|
return this.provincecode;
|
}
|
public void setProvincecode(String provincecode) {
|
this.provincecode = provincecode;
|
}
|
public String getProvincename() {
|
return this.provincename;
|
}
|
public void setProvincename(String provincename) {
|
this.provincename = provincename;
|
}
|
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 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 getTowncode() {
|
return this.towncode;
|
}
|
public void setTowncode(String towncode) {
|
this.towncode = towncode;
|
}
|
public String getTownname() {
|
return this.townname;
|
}
|
public void setTownname(String townname) {
|
this.townname = townname;
|
}
|
public String getContactst() {
|
return this.contactst;
|
}
|
public void setContactst(String contactst) {
|
this.contactst = contactst;
|
}
|
public String getContactswx() {
|
return this.contactswx;
|
}
|
public void setContactswx(String contactswx) {
|
this.contactswx = contactswx;
|
}
|
public String getContacts() {
|
return this.contacts;
|
}
|
public void setContacts(String contacts) {
|
this.contacts = contacts;
|
}
|
|
public int getDisplayID() {
|
return displayID;
|
}
|
|
public void setDisplayID(int displayID) {
|
this.displayID = displayID;
|
}
|
|
public int getMonitorNum() {
|
return monitorNum;
|
}
|
|
public void setMonitorNum(int monitorNum) {
|
this.monitorNum = monitorNum;
|
}
|
|
public int getInspectedNum() {
|
return inspectedNum;
|
}
|
|
public void setInspectedNum(int inspectedNum) {
|
this.inspectedNum = inspectedNum;
|
}
|
|
public boolean isSelected() {
|
return selected;
|
}
|
|
public void setSelected(boolean selected) {
|
this.selected = selected;
|
}
|
|
public Date getCreatedate() {
|
return this.createdate;
|
}
|
public void setCreatedate(Date createdate) {
|
this.createdate = createdate;
|
}
|
public Date getUpdatedate() {
|
return this.updatedate;
|
}
|
public void setUpdatedate(Date updatedate) {
|
this.updatedate = updatedate;
|
}
|
public String getExtension1() {
|
return this.extension1;
|
}
|
public void setExtension1(String extension1) {
|
this.extension1 = extension1;
|
}
|
public String getExtension2() {
|
return this.extension2;
|
}
|
public void setExtension2(String extension2) {
|
this.extension2 = extension2;
|
}
|
public int getIndex() {
|
return this.index;
|
}
|
public void setIndex(int index) {
|
this.index = index;
|
}
|
public String getRemark() {
|
return this.remark;
|
}
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
}
|