OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-02-18 612b5a21417f3c8dcaed84c1c0691dc883088f61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package kr.wisestone.owl.vo;
 
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
 
public class ExportExcelAttrVo {
    public static final short ALIGN_LEFT = XSSFCellStyle.ALIGN_LEFT;
    public static final short ALIGN_CENTER = XSSFCellStyle.ALIGN_CENTER;
    public static final short ALIGN_RIGHT = XSSFCellStyle.ALIGN_RIGHT;
 
    private String name;
    private String desc;
    private int width = 30;
    private short align = ALIGN_LEFT;
    private String i18Prefix;
    private XSSFCellStyle cellStyle;
    private String voAttrName;
    private int mergeCount = 0;
    private Boolean replaceWithNewlineYn = Boolean.FALSE;
 
    public ExportExcelAttrVo() {
    }
 
    public ExportExcelAttrVo(String name) {
        this.name = name;
    }
 
    public ExportExcelAttrVo(String name, String desc) {
        this.name = name;
        this.desc = desc;
    }
 
    public ExportExcelAttrVo(String name, String desc, int width) {
        this.name = name;
        this.desc = desc;
        this.width = width;
    }
 
    public ExportExcelAttrVo(String name, String desc, int width, short align) {
        this.name = name;
        this.desc = desc;
        this.width = width;
        this.align = align;
    }
 
    public ExportExcelAttrVo(String name, String desc, int width, short align, Boolean replaceWithNewlineYn) {
        this.name = name;
        this.desc = desc;
        this.width = width;
        this.align = align;
        this.replaceWithNewlineYn = replaceWithNewlineYn;
    }
 
    public ExportExcelAttrVo(String name, String desc, int width, short align, int mergeCount) {
        this.name = name;
        this.desc = desc;
        this.width = width;
        this.align = align;
        this.mergeCount = mergeCount;
    }
 
    public ExportExcelAttrVo(String name, String desc, int width, XSSFCellStyle cellStyle, int mergeCount) {
        this.name = name;
        this.desc = desc;
        this.width = width;
        this.cellStyle = cellStyle;
        this.mergeCount = mergeCount;
    }
 
    public ExportExcelAttrVo(String name, String desc, String voAttrName, int width, short align) {
        this.name = name;
        this.desc = desc;
        this.voAttrName = voAttrName;
        this.width = width;
        this.align = align;
    }
 
    public ExportExcelAttrVo(String name, String desc, int width, short align, String i18Prefix) {
        this.name = name;
        this.desc = desc;
        this.width = width;
        this.align = align;
        this.i18Prefix = i18Prefix;
    }
 
    public String getName() {
        return this.name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getDesc() {
        return this.desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    public int getWidth() {
        return this.width;
    }
 
    public void setWidth(int width) {
        this.width = width;
    }
 
    public short getAlign() {
        return this.align;
    }
 
    public void setAlign(short align) {
        this.align = align;
    }
 
    public XSSFCellStyle getCellStyle() {
        return this.cellStyle;
    }
 
    public void setCellStyle(XSSFCellStyle cellStyle) {
        this.cellStyle = cellStyle;
    }
 
    public String getI18Prefix() {
        return this.i18Prefix;
    }
 
    public void setI18Prefix(String i18Prefix) {
        this.i18Prefix = i18Prefix;
    }
 
    public String getVoAttrName() {
        return this.voAttrName;
    }
 
    public void setVoAttrName(String voAttrName) {
        this.voAttrName = voAttrName;
    }
 
    public int getMergeCount() {
        return mergeCount;
    }
 
    public void setMergeCount(int mergeCount) {
        this.mergeCount = mergeCount;
    }
 
    public Boolean getReplaceWithNewlineYn() {
        return replaceWithNewlineYn;
    }
 
    public void setReplaceWithNewlineYn(Boolean replaceWithNewlineYn) {
        this.replaceWithNewlineYn = replaceWithNewlineYn;
    }
}