package kr.wisestone.owl.vo;
|
|
public class CompanyFieldVo extends BaseVo{
|
|
private Long id;
|
private String name;
|
private String companyType;
|
private String profitYN;
|
private String industy;
|
private String domain;
|
private String email;
|
private String tel;
|
private String desc;
|
|
public CompanyFieldVo() {}
|
|
public CompanyFieldVo(Long id, String name, String companyType, String profitYN, String industy, String domain, String email, String tel, String desc) {
|
|
this.id = id;
|
this.name = name;
|
this.companyType = companyType;
|
this.profitYN = profitYN;
|
this.industy = industy;
|
this.domain = domain;
|
this.email = email;
|
this.tel = tel;
|
this.desc = desc;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getCompanyType() {
|
return companyType;
|
}
|
|
public void setCompanyType(String companyType) {
|
this.companyType = companyType;
|
}
|
|
public String getProfitYN() {
|
return profitYN;
|
}
|
|
public void setProfitYN(String profitYN) {
|
this.profitYN = profitYN;
|
}
|
|
public String getIndusty() {
|
return industy;
|
}
|
|
public void setIndusty(String industy) {
|
this.industy = industy;
|
}
|
|
public String getDomain() {
|
return domain;
|
}
|
|
public void setDomain(String domain) {
|
this.domain = domain;
|
}
|
|
public String getEmail() {
|
return email;
|
}
|
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
|
public String getTel() {
|
return tel;
|
}
|
|
public void setTel(String tel) {
|
this.tel = tel;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
}
|