PersonVo.java
1.1 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
54
55
56
57
58
59
package com.viontech.keliu.vo;
import java.util.Date;
/**
* Created with IntelliJ IDEA.
*
* @author: zhuhai
* Date: 2022-10-31
* Time: 20:57
*/
public class PersonVo {
private Integer mall_id;
private String person_unid;
private Integer person_type;
private Date counttime;
private Integer mood;
public Integer getMall_id() {
return this.mall_id;
}
public void setMall_id(Integer mall_id) {
this.mall_id = mall_id;
}
public Integer getPerson_type() {
return this.person_type;
}
public String getPerson_unid() {
return this.person_unid;
}
public void setPerson_unid(String person_unid) {
this.person_unid = person_unid;
}
public void setPerson_type(Integer person_type) {
this.person_type = person_type;
}
public Date getCounttime() {
return this.counttime;
}
public void setCounttime(Date counttime) {
this.counttime = counttime;
}
public Integer getMood() {
return mood;
}
public void setMood(Integer mood) {
this.mood = mood;
}
}