Newer
Older
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
package cn.springmvc.model;
import java.sql.Date;
/**
* 用户表
* @author fenghaifeng
* 2014年2月11日
*/
public class User {
private int id;
private int device_type;
private String device_num;
private Date create_time;
private Date last_time;
private int state;
private String nickname;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getDevice_type() {
return device_type;
}
public void setDevice_type(int device_type) {
this.device_type = device_type;
}
public String getDevice_num() {
return device_num;
}
public void setDevice_num(String device_num) {
this.device_num = device_num;
}
public Date getCreate_time() {
return create_time;
}
public void setCreate_time(Date create_time) {
this.create_time = create_time;
}
public Date getLast_time() {
return last_time;
}
public void setLast_time(Date last_time) {
this.last_time = last_time;
}
public int getState() {
return state;
}
public void setState(int state) {
this.state = state;
}
public String getNickname() {
return nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
}