From 10df7e29b51d6a2efacc83d870856f57d97a9b66 Mon Sep 17 00:00:00 2001 From: yanghui <2536613402@qq.com> Date: 星期一, 24 十月 2022 13:48:24 +0800 Subject: [PATCH] #feat 修改别名 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/ConvenientMerchantVO.java | 34 +++++++++++++++++++++++++++++++++- 1 files changed, 33 insertions(+), 1 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 85a339b..6bdb56f 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 @@ -3,6 +3,9 @@ import java.util.Date; import java.util.List; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; import com.panzhihua.common.enums.MerchantBusinessPeriod; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -20,6 +23,7 @@ public class ConvenientMerchantVO { @ApiModelProperty("商家ID") + @JsonSerialize(using = ToStringSerializer.class) private Long id; @ApiModelProperty("商家名称") @@ -47,9 +51,11 @@ private String lon; @ApiModelProperty("营业开始时间") + @JsonFormat(pattern = "HH:mm:ss", timezone = "GMT+8") private Date beginAt; @ApiModelProperty("营业截止时间") + @JsonFormat(pattern = "HH:mm:ss", timezone = "GMT+8") private Date endAt; @ApiModelProperty("营业周期") @@ -61,8 +67,23 @@ @ApiModelProperty("营业状态") private Integer businessStatus; - @ApiModelProperty("咨询量") + @ApiModelProperty("总咨询量") private Integer consultationVolume; + + @ApiModelProperty("月咨询量") + private Integer monthConsultationVolume; + + @ApiModelProperty("日咨询量") + private Integer dayConsultationVolume; + + @ApiModelProperty("总浏览量") + private Integer viewNum; + + @ApiModelProperty("月浏览量") + private Integer monthViewNum; + + @ApiModelProperty("日总浏览量") + private Integer dayViewNum; @ApiModelProperty("商家绑定账户") private String account; @@ -81,4 +102,15 @@ @ApiModelProperty("服务类型id列表") private List<Long> serviceIds; + + @ApiModelProperty("该商家存有商品,最多返回两条") + private List<ConvenientProductVO> productVOList; + + public void setPeriod(String period) { + this.period = MerchantBusinessPeriod.valueOf(period); + } + + public void setBusinessStatus(Boolean businessStatus) { + this.businessStatus = businessStatus ? 1 : 0; + } } -- Gitblit v1.7.1