OWL ITS + 탐지시스템(인터넷 진흥원)
wyu
2021-12-10 49a02aa2071bcaf94f0f8c19e2578cd7650160a4
src/main/java/kr/wisestone/owl/domain/CompanyField.java
@@ -14,9 +14,13 @@
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    private String name;
    private String manager;
    private String tel;
    private String url;
    private String email;
    private String memo;
    private Long ispId;
    private Long hostingId;
    public CompanyField() {}
@@ -34,6 +38,14 @@
    public void setName(String name) {
        this.name = name;
    }
    public String getManager() {
        return manager;
    }
    public void setManager(String manager) {
        this.manager = manager;
    }
    public String getTel() {
@@ -59,4 +71,28 @@
    public void setMemo(String memo) {
        this.memo = memo;
    }
    public String getUrl() {
        return url;
    }
    public void setUrl(String url) {
        this.url = url;
    }
    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;
    }
}