관리 메뉴

통계 & 데이터 그리고 이야기

com.ja.freeboard.vo_AuthVo.java 본문

SpringFramework

com.ja.freeboard.vo_AuthVo.java

NoMadikia 2020. 5. 19. 15:23
728x90
반응형
SMALL
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
package com.ja.freeboard.vo;
 
public class AuthVo {
 
    private int auth_no;
    private int member_no;
    private String auth_certification;
    private String auth_key;
    
    public AuthVo() {
        super();
    }
    public AuthVo(int auth_no, int member_no, String auth_certification, String auth_key) {
        super();
        this.auth_no = auth_no;
        this.member_no = member_no;
        this.auth_certification = auth_certification;
        this.auth_key = auth_key;
    }
    public int getAuth_no() {
        return auth_no;
    }
    public void setAuth_no(int auth_no) {
        this.auth_no = auth_no;
    }
    public int getMember_no() {
        return member_no;
    }
    public void setMember_no(int member_no) {
        this.member_no = member_no;
    }
    public String getAuth_certification() {
        return auth_certification;
    }
    public void setAuth_certification(String auth_certification) {
        this.auth_certification = auth_certification;
    }
    public String getAuth_key() {
        return auth_key;
    }
    public void setAuth_key(String auth_key) {
        this.auth_key = auth_key;
    }
    
    
    
    
}
 
cs
728x90
Comments