OWL ITS + 탐지시스템(인터넷 진흥원)
wyu
2021-12-10 49a02aa2071bcaf94f0f8c19e2578cd7650160a4
src/main/java/kr/wisestone/owl/web/form/CompanyFieldForm.java
@@ -7,13 +7,14 @@
import java.util.List;
import java.util.Map;
public class CompanyFieldForm {
    private Long id;
    private String name;
public class CompanyFieldForm extends UsePartnerForm {
    private String manager;
    private String tel;
    private String email;
    private String url;
    private String memo;
    private Long ispId;
    private Long hostingId;
    private List<Long> removeIds = Lists.newArrayList();
    public CompanyFieldForm() {
@@ -25,22 +26,6 @@
            form.setRemoveIds(MapUtil.getLongs(params, "removeIds"));
        }
        return form;
    }
    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 getManager() {
@@ -59,12 +44,12 @@
        this.tel = tel;
    }
    public String getEmail() {
        return email;
    public String getUrl() {
        return url;
    }
    public void setEmail(String email) {
        this.email = email;
    public void setUrl(String url) {
        this.url = url;
    }
    public String getMemo() {
@@ -75,6 +60,22 @@
        this.memo = memo;
    }
    public Long getIspId() {
        return ispId;
    }
    public void setIspId(Long ispId) {
        this.ispId = ispId;
    }
    public Long getHostingId() {
        return hostingId;
    }
    public void setHostingId(Long hostingId) {
        this.hostingId = hostingId;
    }
    public List<Long> getRemoveIds() {
        return removeIds;
    }