mirror of
https://gitee.com/y_project/RuoYi-Cloud.git
synced 2026-01-29 13:01:57 +08:00
新增多图片上传pc端返回code 为null
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user