#
18516761980
2021-08-16 f25c800bca726b67ea74e6ed576b038b1b9561a7
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
package com.slcf.pojo;
 
import java.text.SimpleDateFormat;
import java.util.Date;
 
import org.springframework.format.annotation.DateTimeFormat;
 
public class UserBean {
    
    private Integer user_id;
    private Integer dept_id;
    private String user_account;
    private String user_password;
    private String user_name;
    private String img;
    private Integer user_age;
    private String user_sex;
    private String user_address;
    @DateTimeFormat(pattern="yyyy-MM-dd")
    private Date user_birth;
    private String user_phone;
    private String email;
    @DateTimeFormat(pattern="yyyy-MM-dd hh:mm:ss")
    private Date reg_time;
    
    private String dept_name;
    private String birthStr;
    private Integer role_id;
    
    private String mon;
    private int num;
    public String getMon() {
        return mon;
    }
    public void setMon(String mon) {
        this.mon = mon;
    }
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public Integer getRole_id() {
        return role_id;
    }
    public void setRole_id(Integer role_id) {
        this.role_id = role_id;
    }
    public String getBirthStr() {
        return birthStr;
    }
    public void setBirthStr(String birthStr) {
        this.birthStr = birthStr;
    }
    public String getDept_name() {
        return dept_name;
    }
    public void setDept_name(String dept_name) {
        this.dept_name = dept_name;
    }
    public Integer getUser_id() {
        return user_id;
    }
    public void setUser_id(Integer user_id) {
        this.user_id = user_id;
    }
    public Integer getDept_id() {
        return dept_id;
    }
    public void setDept_id(Integer dept_id) {
        this.dept_id = dept_id;
    }
    public String getUser_account() {
        return user_account;
    }
    public void setUser_account(String user_account) {
        this.user_account = user_account;
    }
    public String getUser_password() {
        return user_password;
    }
    public void setUser_password(String user_password) {
        this.user_password = user_password;
    }
    public String getUser_name() {
        return user_name;
    }
    public void setUser_name(String user_name) {
        this.user_name = user_name;
    }
    public String getImg() {
        return img;
    }
    public void setImg(String img) {
        this.img = img;
    }
    public Integer getUser_age() {
        return user_age;
    }
    public void setUser_age(Integer user_age) {
        this.user_age = user_age;
    }
    public String getUser_sex() {
        return user_sex;
    }
    public void setUser_sex(String user_sex) {
        this.user_sex = user_sex;
    }
    public String getUser_address() {
        return user_address;
    }
    public void setUser_address(String user_address) {
        this.user_address = user_address;
    }
    public Date getUser_birth() {
        return user_birth;
    }
    public void setUser_birth(Date user_birth) {
        SimpleDateFormat sm=new SimpleDateFormat("yyyy-MM-dd");
        birthStr=sm.format(user_birth);
        this.user_birth = user_birth;
    }
    public String getUser_phone() {
        return user_phone;
    }
    public void setUser_phone(String user_phone) {
        this.user_phone = user_phone;
    }
    public String getEmail() {
        return email;
    }
    public void setEmail(String email) {
        this.email = email;
    }
    public Date getReg_time() {
        return reg_time;
    }
    public void setReg_time(Date reg_time) {
        this.reg_time = reg_time;
    }
}