package cn.com.basic.face.discern.user.entity;
|
|
import java.io.Serializable;
|
|
public class Place implements Serializable{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private Integer id;
|
|
private Integer companyid;
|
|
private String label;
|
|
private String authorizationid;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getCompanyid() {
|
return companyid;
|
}
|
|
public void setCompanyid(Integer companyid) {
|
this.companyid = companyid;
|
}
|
|
public String getLabel() {
|
return label;
|
}
|
|
public void setLabel(String label) {
|
this.label = label == null ? null : label.trim();
|
}
|
|
public String getAuthorizationid() {
|
return authorizationid;
|
}
|
|
public void setAuthorizationid(String authorizationid) {
|
this.authorizationid = authorizationid == null ? null : authorizationid.trim();
|
}
|
}
|