package com.ruoyi.order.domain.vo;
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import com.ruoyi.common.core.annotation.Excel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @ClassName MgtTotalDataTotalVo
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/6/20 14:56
|
* @Version 1.0
|
*/
|
@Data
|
public class MgtTotalDataTotalVo {
|
|
@Excel(name = "店铺名称", width = 30, sort = 1)
|
@ApiModelProperty(value = "商户名称")
|
private String shopName;
|
|
@Excel(name = "营业额", width = 30, sort = 2)
|
@ApiModelProperty(value = "营业额")
|
@JsonSerialize(using = ToStringSerializer.class)
|
private BigDecimal salesTotal;
|
|
@Excel(name = "进店总人数", width = 30, sort = 3)
|
@ApiModelProperty(value = "进店总人数")
|
private Integer orderPerson;
|
|
@Excel(name = "3次体验人数", width = 30, sort = 4)
|
@ApiModelProperty(value = "3次体验人数")
|
private Integer onlyExperiencePerson;
|
|
@Excel(name = "3次体验开单人数", width = 30, sort = 5)
|
@ApiModelProperty(value = "3次体验开单人数")
|
private Integer experienceCyclePerson;
|
|
@Excel(name = "没体验开单人数", width = 30, sort = 6)
|
@ApiModelProperty(value = "没体验开单人数")
|
private Integer onlyCyclePerson;
|
|
@Excel(name = "续单人数", width = 30, sort = 7)
|
@ApiModelProperty(value = "续单人数")
|
private Integer reorderPerson;
|
|
@Excel(name = "老客户回店人数", width = 30, sort = 9)
|
@ApiModelProperty(value = "老客户回店人数")
|
private Integer returnedPerson;
|
|
@Excel(name = "整体调理人数", width = 30, sort = 8)
|
@ApiModelProperty(value = "整体调理人数")
|
private Integer cyclePerson;
|
|
@Excel(name = "单品人数", width = 30, sort = 10)
|
@ApiModelProperty(value = "单品人数")
|
private Integer goodsPerson;
|
|
@Excel(name = "单品数量", width = 30, sort = 11)
|
@ApiModelProperty(value = "单品数量")
|
private Integer goodsNumber;
|
|
}
|