ResultVo.java
2.13 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
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
package com.viontech.keliu.vo;
/**
* Created with IntelliJ IDEA.
*
* @author: zhuhai
* Date: 2022-10-31
* Time: 20:57
*/
public class ResultVo {
/**
* 门店名称
*/
private String mall_name;
/**
* 总人数
*/
private String count_person;
/**
* 店员人数
*/
private String clerk_num;
/**
* 顾客人数
*/
private String customer_num;
/**
* 成人人数
*/
private String customer_adult;
/**
* 儿童人数
*/
private String customer_child;
/**
*独自进店顾客
*/
private String customer_alone;
/**
* 分组数(小于6s)
*/
private String customer_group;
public String getMall_name() {
return this.mall_name;
}
public void setMall_name(String mall_name) {
this.mall_name = mall_name;
}
public String getCount_person() {
return this.count_person;
}
public void setCount_person(String count_person) {
this.count_person = count_person;
}
public String getClerk_num() {
return this.clerk_num;
}
public void setClerk_num(String clerk_num) {
this.clerk_num = clerk_num;
}
public String getCustomer_num() {
return this.customer_num;
}
public void setCustomer_num(String customer_num) {
this.customer_num = customer_num;
}
public String getCustomer_adult() {
return customer_adult;
}
public void setCustomer_adult(String customer_adult) {
this.customer_adult = customer_adult;
}
public String getCustomer_child() {
return customer_child;
}
public void setCustomer_child(String customer_child) {
this.customer_child = customer_child;
}
public String getCustomer_alone() {
return customer_alone;
}
public void setCustomer_alone(String customer_alone) {
this.customer_alone = customer_alone;
}
public String getCustomer_group() {
return customer_group;
}
public void setCustomer_group(String customer_group) {
this.customer_group = customer_group;
}
}