OWL ITS + 탐지시스템(인터넷 진흥원)
wyu
2021-11-08 567556af0acaf45329ec79b9fb40cdb9388939fd
src/main/java/kr/wisestone/owl/domain/CompanyField.java
@@ -14,13 +14,9 @@
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    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 CompanyField() {}
@@ -40,36 +36,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() {
@@ -80,19 +52,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;
    }
}