| | |
| | | |
| | | 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; |
| | | |
| | |
| | | @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; |
| | | |
| | | @ApiModelProperty(value = "总人数") |
| | | @Excel(name = "进店总人数", width = 30, sort = 3) |
| | | @ApiModelProperty(value = "进店总人数") |
| | | private Integer orderPerson; |
| | | |
| | | @ApiModelProperty(value = "体验人数") |
| | | @Excel(name = "3次体验人数", width = 30, sort = 4) |
| | | @ApiModelProperty(value = "3次体验人数") |
| | | private Integer onlyExperiencePerson; |
| | | |
| | | @ApiModelProperty(value = "体验开单人数") |
| | | @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; |
| | | |