From 0e44c17e08cd13dc24c1e084890b4f2b5c9dac2c Mon Sep 17 00:00:00 2001 From: puhanshu <a9236326> Date: 星期五, 22 十月 2021 13:46:05 +0800 Subject: [PATCH] 活动积分优化修改 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/ConvenientMerchantVO.java | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/ConvenientMerchantVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/ConvenientMerchantVO.java index 0a0893d..156f17f 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/ConvenientMerchantVO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/ConvenientMerchantVO.java @@ -70,6 +70,18 @@ @ApiModelProperty("月咨询量") private Integer monthConsultationVolume; + @ApiModelProperty("日咨询量") + private Integer dayConsultationVolume; + + @ApiModelProperty("总浏览量") + private Integer viewNum; + + @ApiModelProperty("月浏览量") + private Integer monthViewNum; + + @ApiModelProperty("日总浏览量") + private Integer dayViewNum; + @ApiModelProperty("商家绑定账户") private String account; @@ -88,6 +100,9 @@ @ApiModelProperty("服务类型id列表") private List<Long> serviceIds; + @ApiModelProperty("该商家存有商品,最多返回两条") + private List<ConvenientProductVO> productVOList; + public void setPeriod(String period) { this.period = MerchantBusinessPeriod.valueOf(period); } -- Gitblit v1.7.1