-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNoticeModel.java
More file actions
100 lines (96 loc) · 2.23 KB
/
NoticeModel.java
File metadata and controls
100 lines (96 loc) · 2.23 KB
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
package kr.happyjob.study.mngNot.model;
public class NoticeModel {
// 보통은 이렇게 private 을 위쪽에 입력하고,
private String notice_del_yn;
private String loginID;
private int notice_no;
private String notice_title;
private String notice_date;
private String notice_cont;
private int file_no;
private String file_name;
private String logic_path;
private String physic_path;
private int file_size;
private String exten;
private String name;
// Generate Getters and Setters... 작업 결과를 아래쪽에 입력
public String getNotice_del_yn() {
return notice_del_yn;
}
public void setNotice_del_yn(String notice_del_yn) {
this.notice_del_yn = notice_del_yn;
}
public String getLoginID() {
return loginID;
}
public void setLoginID(String loginID) {
this.loginID = loginID;
}
public int getNotice_no() {
return notice_no;
}
public void setNotice_no(int notice_no) {
this.notice_no = notice_no;
}
public String getNotice_title() {
return notice_title;
}
public void setNotice_title(String notice_title) {
this.notice_title = notice_title;
}
public String getNotice_date() {
return notice_date;
}
public void setNotice_date(String notice_date) {
this.notice_date = notice_date;
}
public String getNotice_cont() {
return notice_cont;
}
public void setNotice_cont(String notice_cont) {
this.notice_cont = notice_cont;
}
public int getFile_no() {
return file_no;
}
public void setFile_no(int file_no) {
this.file_no = file_no;
}
public String getFile_name() {
return file_name;
}
public void setFile_name(String file_name) {
this.file_name = file_name;
}
public String getLogic_path() {
return logic_path;
}
public void setLogic_path(String logic_path) {
this.logic_path = logic_path;
}
public String getPhysic_path() {
return physic_path;
}
public void setPhysic_path(String physic_path) {
this.physic_path = physic_path;
}
public int getFile_size() {
return file_size;
}
public void setFile_size(int file_size) {
this.file_size = file_size;
}
public String getExten() {
return exten;
}
public void setExten(String exten) {
this.exten = exten;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}