OWL ITS + 탐지시스템(인터넷 진흥원)
박지현
2022-03-07 398a4927e195755bd6a46be99337efd8dacc3dc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package kr.wisestone.owl.web.form;
 
public class CustomFieldValueForm {
    private Long customFieldId;
    private String value;
 
    public CustomFieldValueForm(){}
 
    public Long getCustomFieldId() {
        return customFieldId;
    }
 
    public void setCustomFieldId(Long customFieldId) {
        this.customFieldId = customFieldId;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
}