From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期五, 14 三月 2025 11:27:47 +0800 Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/VolunteerMerchantVO.java | 14 ++++++-------- 1 files changed, 6 insertions(+), 8 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/VolunteerMerchantVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/VolunteerMerchantVO.java index bc11f4c..21c8043 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/VolunteerMerchantVO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/VolunteerMerchantVO.java @@ -1,6 +1,5 @@ package com.panzhihua.common.model.vos.community; -import com.baomidou.mybatisplus.annotation.TableField; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -106,14 +105,12 @@ * 营业开始时间 */ @ApiModelProperty(value = "营业开始时间") - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") - private Date businessStartTime; + private String businessStartTime; /** * 营业结束时间 */ @ApiModelProperty(value = "营业结束时间") - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") - private Date businessEndTime; + private String businessEndTime; /** * 活动名称 */ @@ -140,17 +137,18 @@ private Date updateTime; - @TableField(exist = false) @ApiModelProperty(value = "商家联系电话") private String merchantPhone; - @TableField(exist = false) @ApiModelProperty(value = "商家联系人") private String merchantLinkman; - @TableField(exist = false) @ApiModelProperty(value = "商家类型名称") private String merchantTypeName; + @ApiModelProperty(value = "商家评分") + private String merchantGrade; + @ApiModelProperty(value = "商家积分") + private String merchantIntegral; } -- Gitblit v1.7.1