InvestigateUser.java
1.14 KB
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
package com.project.demo.domain;
/**
* Created by bert on 2018/7/10.
*/
public class InvestigateUser {
private Integer usersId;
private Integer comInvestigationId;
private String name;
private String mobile;
@Override
public String toString() {
return "InvestigateUser{" +
"usersId=" + usersId +
", comInvestigationId=" + comInvestigationId +
", name='" + name + '\'' +
", mobile='" + mobile + '\'' +
'}';
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getMobile() {
return mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public Integer getUsersId() {
return usersId;
}
public void setUsersId(Integer usersId) {
this.usersId = usersId;
}
public Integer getComInvestigationId() {
return comInvestigationId;
}
public void setComInvestigationId(Integer comInvestigationId) {
this.comInvestigationId = comInvestigationId;
}
}