InvestigateUser.java
867 Bytes
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
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;
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;
}
}