103 lines
2.2 KiB
Java
103 lines
2.2 KiB
Java
package com.jingyi.iotserver.clientmanage.model;
|
|
|
|
public class LoginResultEntity {
|
|
private OrganizationInfoEntity organize;
|
|
private String session;
|
|
private String usertype;
|
|
private String scopelevel;
|
|
private String levelvalue;
|
|
private double longitude;
|
|
private double latitude;
|
|
private String phone;
|
|
private String theme;
|
|
private String orgname;
|
|
private String hidden;
|
|
public void setOrganize(OrganizationInfoEntity organize) {
|
|
this.organize = organize;
|
|
}
|
|
|
|
public OrganizationInfoEntity getOrganize() {
|
|
return organize;
|
|
}
|
|
|
|
public void setSession(String session) {
|
|
this.session = session;
|
|
}
|
|
|
|
public String getSession() {
|
|
return session;
|
|
}
|
|
|
|
public void setUsertype(String usertype) {
|
|
this.usertype = usertype;
|
|
}
|
|
|
|
public String getUsertype() {
|
|
return usertype;
|
|
}
|
|
|
|
public void setScopelevel(String scopelevel) {
|
|
this.scopelevel = scopelevel;
|
|
}
|
|
|
|
public String getScopelevel() {
|
|
return scopelevel;
|
|
}
|
|
|
|
public void setLevelvalue(String levelvalue) {
|
|
this.levelvalue = levelvalue;
|
|
}
|
|
|
|
public String getLevelvalue() {
|
|
return levelvalue;
|
|
}
|
|
|
|
public void setLongitude(double longitude) {
|
|
this.longitude = longitude;
|
|
}
|
|
|
|
public double getLongitude() {
|
|
return longitude;
|
|
}
|
|
|
|
public void setLatitude(double latitude) {
|
|
this.latitude = latitude;
|
|
}
|
|
|
|
public double getLatitude() {
|
|
return latitude;
|
|
}
|
|
|
|
public void setPhone(String phone) {
|
|
this.phone = phone;
|
|
}
|
|
|
|
public String getPhone() {
|
|
return phone;
|
|
}
|
|
|
|
public void setTheme(String theme) {
|
|
this.theme = theme;
|
|
}
|
|
|
|
public String getTheme() {
|
|
return theme;
|
|
}
|
|
|
|
public String getOrgname() {
|
|
return orgname;
|
|
}
|
|
|
|
public void setOrgname(String orgname) {
|
|
this.orgname = orgname;
|
|
}
|
|
|
|
public String getHidden() {
|
|
return hidden;
|
|
}
|
|
|
|
public void setHidden(String hidden) {
|
|
this.hidden = hidden;
|
|
}
|
|
}
|