You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
962 B
55 lines
962 B
package com.example.bean;
|
|
|
|
public class EntrepriseProfileBean {
|
|
private int id;
|
|
|
|
private String name;
|
|
|
|
private String overview;
|
|
|
|
private String companyID; // 就是账号
|
|
|
|
private String contactEmail;
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public String getOverview() {
|
|
return overview;
|
|
}
|
|
|
|
public String getCompanyID() {
|
|
return companyID;
|
|
}
|
|
|
|
public String getContactEmail()
|
|
{
|
|
return contactEmail;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public void setOverview(String overview) {
|
|
this.overview = overview;
|
|
}
|
|
|
|
public void setCompanyID(String companyID) {
|
|
this.companyID = companyID;
|
|
}
|
|
|
|
public void setContactEmail(String contactEmail)
|
|
{
|
|
this.contactEmail=contactEmail;
|
|
}
|
|
} |