From 19e7bbc520b9227b53d86b9bf947f6de7661f27f Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期五, 20 十月 2023 09:47:56 +0800 Subject: [PATCH] 修改商家服务 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/JinhuiConvenientMerchantVO.java | 28 ++-------------------------- 1 files changed, 2 insertions(+), 26 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/JinhuiConvenientMerchantVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/JinhuiConvenientMerchantVO.java index e5aaf22..fa801e4 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/JinhuiConvenientMerchantVO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/convenient/JinhuiConvenientMerchantVO.java @@ -24,8 +24,7 @@ public class JinhuiConvenientMerchantVO { @ApiModelProperty("商家ID") - @JsonSerialize(using = ToStringSerializer.class) - private Long id; + private String id; @ApiModelProperty("商家名称") private String name; @@ -78,27 +77,11 @@ @ApiModelProperty("所属社区名称") private String communityName; - - @ApiModelProperty("服务类型id列表") - private List<String> serviceIds; - - @ApiModelProperty("该商家存有商品,最多返回两条") - private List<ConvenientProductVO> productVOList; - - - - @ApiModelProperty("店铺销量") - private Integer sale; - - @ApiModelProperty("店铺销售额") - private BigDecimal saleVolume; - @ApiModelProperty("详细地址") private String detailedAddress; @ApiModelProperty("商家评分") - private BigDecimal score; - + private String score; @ApiModelProperty("审核状态 (1待审核 2已通过 3未通过 )") private String auditType; @@ -106,11 +89,4 @@ @ApiModelProperty("审核意见") private String auditOpinion; - public void setPeriod(String period) { - this.period = MerchantBusinessPeriod.valueOf(period); - } - - public void setBusinessStatus(Boolean businessStatus) { - this.businessStatus = businessStatus ? 1 : 0; - } } -- Gitblit v1.7.1