From 567556af0acaf45329ec79b9fb40cdb9388939fd Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 월, 08 11월 2021 17:13:47 +0900 Subject: [PATCH] 업체 관리 백엔드 수정 --- src/main/java/kr/wisestone/owl/vo/CompanyFieldVo.java | 66 ++++++-------------------------- 1 files changed, 13 insertions(+), 53 deletions(-) diff --git a/src/main/java/kr/wisestone/owl/vo/CompanyFieldVo.java b/src/main/java/kr/wisestone/owl/vo/CompanyFieldVo.java index 9fd52a1..89ce21a 100644 --- a/src/main/java/kr/wisestone/owl/vo/CompanyFieldVo.java +++ b/src/main/java/kr/wisestone/owl/vo/CompanyFieldVo.java @@ -4,27 +4,19 @@ 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; + private String email; + private String memo; public CompanyFieldVo() {} - public CompanyFieldVo(Long id, String name, String companyType, String profitYN, String industy, String domain, String email, String tel, String desc) { + public CompanyFieldVo(Long id, String name, String tel, String email, String memo) { 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; + this.email = email; + this.memo = memo; } public Long getId() { @@ -43,36 +35,12 @@ this.name = name; } - public String getCompanyType() { - return companyType; + public String getTel() { + return tel; } - 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 void setTel(String tel) { + this.tel = tel; } public String getEmail() { @@ -83,19 +51,11 @@ this.email = email; } - public String getTel() { - return tel; + public String getMemo() { + return memo; } - public void setTel(String tel) { - this.tel = tel; - } - - public String getDesc() { - return desc; - } - - public void setDesc(String desc) { - this.desc = desc; + public void setMemo(String memo) { + this.memo = memo; } } -- Gitblit v1.8.0