From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期二, 20 五月 2025 23:48:08 +0800 Subject: [PATCH] 修改文件上传类型限制 --- 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