OWL ITS + 탐지시스템(인터넷 진흥원)
wyu
2021-11-08 464e2317e377cd82f570170ab6adc15d005ff148
src/main/java/kr/wisestone/owl/vo/CompanyFieldVo.java
@@ -4,27 +4,21 @@
    private Long id;
    private String name;
    private String companyType;
    private String profitYN;
    private String industy;
    private String domain;
    private String email;
    private String manager;
    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 manager, 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.manager = manager;
        this.tel = tel;
        this.desc = desc;
        this.email = email;
        this.memo = memo;
    }
    public Long getId() {
@@ -43,44 +37,12 @@
        this.name = name;
    }
    public String getCompanyType() {
        return companyType;
    public String getManager() {
        return manager;
    }
    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 void setManager(String manager) {
        this.manager = manager;
    }
    public String getTel() {
@@ -91,11 +53,19 @@
        this.tel = tel;
    }
    public String getDesc() {
        return desc;
    public String getEmail() {
        return email;
    }
    public void setDesc(String desc) {
        this.desc = desc;
    public void setEmail(String email) {
        this.email = email;
    }
    public String getMemo() {
        return memo;
    }
    public void setMemo(String memo) {
        this.memo = memo;
    }
}