From 5e7892cd0921111dfbaf84196f2593f8045d1c11 Mon Sep 17 00:00:00 2001 From: yanghui <2536613402@qq.com> Date: 星期四, 08 十二月 2022 13:16:54 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/haucheng_panzhihua' into haucheng_panzhihua --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/ConvenientMerchantVO.java | 17 +++++++++++++++-- 1 files changed, 15 insertions(+), 2 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 4e450ee..162b304 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 @@ -1,5 +1,6 @@ package com.panzhihua.common.model.vos.community.convenient; +import java.math.BigDecimal; import java.util.Date; import java.util.List; @@ -92,7 +93,7 @@ private Integer accountStatus; @ApiModelProperty("所属社区id") - private Long communityId; + private String communityId; @ApiModelProperty("所属社区名称") private String communityName; @@ -101,7 +102,7 @@ private String serviceScope; @ApiModelProperty("服务类型id列表") - private List<Long> serviceIds; + private List<String> serviceIds; @ApiModelProperty("该商家存有商品,最多返回两条") private List<ConvenientProductVO> productVOList; @@ -112,6 +113,18 @@ @ApiModelProperty("手机号") private String mobilePhone; + @ApiModelProperty("店铺销量") + private Integer sale; + + @ApiModelProperty("店铺销售额") + private BigDecimal saleVolume; + + @ApiModelProperty("详细地址") + private String detailedAddress; + + @ApiModelProperty("商家评分") + private BigDecimal score; + public void setPeriod(String period) { this.period = MerchantBusinessPeriod.valueOf(period); } -- Gitblit v1.7.1