feiyu02
2023-11-15 45fdeee912088efbd07a748a011682c6c6d1ce51
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
package com.flightfeather.monitor.domain.ds1.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "du_js_t_login_info")
public class LoginInfo {
    @Id
    private Integer id;
 
    @Column(name = "user_name")
    private String userName;
 
    private String password;
 
    private String cookie;
 
    @Column(name = "cookie_timestamp")
    private Date cookieTimestamp;
 
    private String region;
 
    /**
     * @return id
     */
    public Integer getId() {
        return id;
    }
 
    /**
     * @param id
     */
    public void setId(Integer id) {
        this.id = id;
    }
 
    /**
     * @return user_name
     */
    public String getUserName() {
        return userName;
    }
 
    /**
     * @param userName
     */
    public void setUserName(String userName) {
        this.userName = userName == null ? null : userName.trim();
    }
 
    /**
     * @return password
     */
    public String getPassword() {
        return password;
    }
 
    /**
     * @param password
     */
    public void setPassword(String password) {
        this.password = password == null ? null : password.trim();
    }
 
    /**
     * @return cookie
     */
    public String getCookie() {
        return cookie;
    }
 
    /**
     * @param cookie
     */
    public void setCookie(String cookie) {
        this.cookie = cookie == null ? null : cookie.trim();
    }
 
    /**
     * @return cookie_timestamp
     */
    public Date getCookieTimestamp() {
        return cookieTimestamp;
    }
 
    /**
     * @param cookieTimestamp
     */
    public void setCookieTimestamp(Date cookieTimestamp) {
        this.cookieTimestamp = cookieTimestamp;
    }
 
    /**
     * @return region
     */
    public String getRegion() {
        return region;
    }
 
    /**
     * @param region
     */
    public void setRegion(String region) {
        this.region = region == null ? null : region.trim();
    }
}