mitao
2025-03-13 86df207c37502cce1b2043e1c7c0486459eef1d6
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;
}