root/nextboard/src/org/springframework/samples/kyuriboard/domain/User.java

리비전 3, 1.7 kB (mefour에 의해 체크인됨, 16 년 전)

ASSIGNED - # 1: 인큐페이터 사이트를 위한 개념 정립
http://221.150.127.106:8081/projects/hubproject/ticket/1

Line 
1 /**
2  *
3  */
4 package org.springframework.samples.kyuriboard.domain;
5
6 import java.io.Serializable;
7 import java.util.Date;
8
9 /**
10  * @author DAMI(archy712@naver.com)
11  *
12  */
13 public class User implements Serializable {
14
15         /**
16          * 직렬화 ID
17          */
18         private static final long serialVersionUID = 1L;
19        
20         /**
21          * 사용자 ID
22          */
23         private String userId;
24        
25         /**
26          * 사용자 명
27          */
28         private String userName;
29        
30         /**
31          * 사용자 비밀번호
32          */
33         private String passwd;
34        
35         /**
36          * 사용자 이메일
37          */
38         private String email;
39        
40         /**
41          * 사용자 등록일
42          */
43         private Date insertDate;
44
45         /**
46          * @return the email
47          */
48         public String getEmail() {
49                 return email;
50         }
51
52         /**
53          * @param email the email to set
54          */
55         public void setEmail(String email) {
56                 this.email = email;
57         }
58
59         /**
60          * @return the insertDate
61          */
62         public Date getInsertDate() {
63                 return insertDate;
64         }
65
66         /**
67          * @param insertDate the insertDate to set
68          */
69         public void setInsertDate(Date insertDate) {
70                 this.insertDate = insertDate;
71         }
72
73         /**
74          * @return the passwd
75          */
76         public String getPasswd() {
77                 return passwd;
78         }
79
80         /**
81          * @param passwd the passwd to set
82          */
83         public void setPasswd(String passwd) {
84                 this.passwd = passwd;
85         }
86
87         /**
88          * @return the userId
89          */
90         public String getUserId() {
91                 return userId;
92         }
93
94         /**
95          * @param userId the userId to set
96          */
97         public void setUserId(String userId) {
98                 this.userId = userId;
99         }
100
101         /**
102          * @return the userName
103          */
104         public String getUserName() {
105                 return userName;
106         }
107
108         /**
109          * @param userName the userName to set
110          */
111         public void setUserName(String userName) {
112                 this.userName = userName;
113         }
114        
115        
116
117 }
참고: 소스 브라우저를 사용하면서 도움이 필요하다면, TracBrowser를 참고하십시오.