新增多图片上传pc端返回code 为null

This commit is contained in:
wuyibo
2023-02-09 18:22:23 +08:00
parent e1057db216
commit 25562c6475
8 changed files with 644 additions and 291 deletions

View File

@@ -80,8 +80,8 @@ public class WxBuildingInfo extends BaseEntity
private String defaultPicture;
/** 是否支持在线 */
@Excel(name = "是否支持在线")
private Long isSupportlive;
@Excel(name = "支持在线")
private Boolean isSupportlive;
/** 球馆状态 */
@Excel(name = "球馆状态")
@@ -93,7 +93,7 @@ public class WxBuildingInfo extends BaseEntity
/** 是否开放 */
@Excel(name = "是否开放")
private Long isOpen;
private Boolean isOpen;
/** 人均价格 */
@Excel(name = "人均价格")
@@ -246,12 +246,12 @@ public class WxBuildingInfo extends BaseEntity
{
return defaultPicture;
}
public void setIsSupportlive(Long isSupportlive)
public void setIsSupportlive(Boolean isSupportlive)
{
this.isSupportlive = isSupportlive;
}
public Long getIsSupportlive()
public Boolean getIsSupportlive()
{
return isSupportlive;
}
@@ -273,12 +273,12 @@ public class WxBuildingInfo extends BaseEntity
{
return rejectReason;
}
public void setIsOpen(Long isOpen)
public void setIsOpen(Boolean isOpen)
{
this.isOpen = isOpen;
}
public Long getIsOpen()
public Boolean getIsOpen()
{
return isOpen;
}

View File

@@ -52,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="cityName != null and cityName != ''"> and CITY_NAME like concat('%', #{cityName}, '%')</if>
<if test="status != null "> and STATUS = #{status}</if>
<if test="isOpen != null "> and IS_OPEN = #{isOpen}</if>
<if test="isSupportlive != null "> and IS_SUPPORTLIVE = #{isSupportlive}</if>
<if test="createdId != null "> and CREATED_ID = #{createdId}</if>
</where>
</select>