xuhy
3 天以前 508f3e225df87e0da974424981e7782fc5ce875c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "接待人数统计VO")
public class PersonnelStatisticsVO implements Serializable {
 
    @ApiModelProperty(value = "桌号")
    private String boardName;
    @ApiModelProperty(value = "接待人数")
    private Integer personCount;
    @ApiModelProperty(value = "人均消费金额")
    private BigDecimal avgAmount;
 
}