|
@@ -9,6 +9,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="schoolName" column="school_name"/>
|
|
<result property="schoolName" column="school_name"/>
|
|
|
<result property="circularLogo" column="circular_logo"/>
|
|
<result property="circularLogo" column="circular_logo"/>
|
|
|
<result property="rectangleLogo" column="rectangle_logo"/>
|
|
<result property="rectangleLogo" column="rectangle_logo"/>
|
|
|
|
|
+ <result property="lotControl" column="lot_control"/>
|
|
|
<result property="signMap" column="sign_map"/>
|
|
<result property="signMap" column="sign_map"/>
|
|
|
<result property="videoCover" column="video_cover"/>
|
|
<result property="videoCover" column="video_cover"/>
|
|
|
<result property="operationGuide" column="operation_guide"/>
|
|
<result property="operationGuide" column="operation_guide"/>
|
|
@@ -21,12 +22,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
|
|
<sql id="selectSysLogoConfigVo">
|
|
<sql id="selectSysLogoConfigVo">
|
|
|
- select id, school_name, circular_logo, rectangle_logo, sign_map, video_cover, operation_guide, login_banner, homepage_banner,user_type,smart_lock,
|
|
|
|
|
|
|
+ select id, school_name, circular_logo, rectangle_logo, lot_control, sign_map, video_cover, operation_guide, login_banner, homepage_banner,user_type,smart_lock,
|
|
|
air_bottle
|
|
air_bottle
|
|
|
from sys_logo_config
|
|
from sys_logo_config
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="selectSysLogoConfigListVo">
|
|
<sql id="selectSysLogoConfigListVo">
|
|
|
- select t.id, t.school_name, t.circular_logo, t.rectangle_logo, t.sign_map, t.video_cover, t.operation_guide, t.login_banner, t.homepage_banner,t.user_type from sys_logo_config as t
|
|
|
|
|
|
|
+ select t.id, t.school_name, t.circular_logo, t.rectangle_logo, t.lot_control, t.sign_map, t.video_cover, t.operation_guide, t.login_banner, t.homepage_banner,t.user_type from sys_logo_config as t
|
|
|
</sql>
|
|
</sql>
|
|
|
<select id="selectSysLogoConfigList" parameterType="com.zd.system.domain.SysLogoConfig" resultMap="SysLogoConfigResult">
|
|
<select id="selectSysLogoConfigList" parameterType="com.zd.system.domain.SysLogoConfig" resultMap="SysLogoConfigResult">
|
|
|
<include refid="selectSysLogoConfigVo"/>
|
|
<include refid="selectSysLogoConfigVo"/>
|
|
@@ -34,6 +35,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="schoolName != null and schoolName != ''"> and school_name like concat('%', #{schoolName}, '%')</if>
|
|
<if test="schoolName != null and schoolName != ''"> and school_name like concat('%', #{schoolName}, '%')</if>
|
|
|
<if test="circularLogo != null and circularLogo != ''"> and circular_logo = #{circularLogo}</if>
|
|
<if test="circularLogo != null and circularLogo != ''"> and circular_logo = #{circularLogo}</if>
|
|
|
<if test="rectangleLogo != null and rectangleLogo != ''"> and rectangle_logo = #{rectangleLogo}</if>
|
|
<if test="rectangleLogo != null and rectangleLogo != ''"> and rectangle_logo = #{rectangleLogo}</if>
|
|
|
|
|
+ <if test="lotControl != null and lotControl != ''"> and lot_control = #{lotControl}</if>
|
|
|
<if test="signMap != null and signMap != ''"> and sign_map = #{signMap}</if>
|
|
<if test="signMap != null and signMap != ''"> and sign_map = #{signMap}</if>
|
|
|
<if test="videoCover != null and videoCover != ''"> and video_cover = #{videoCover}</if>
|
|
<if test="videoCover != null and videoCover != ''"> and video_cover = #{videoCover}</if>
|
|
|
<if test="operationGuide != null and operationGuide != ''"> and operation_guide = #{operationGuide}</if>
|
|
<if test="operationGuide != null and operationGuide != ''"> and operation_guide = #{operationGuide}</if>
|
|
@@ -56,6 +58,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
|
|
<if test="rectangleLogo != null">rectangle_logo,</if>
|
|
<if test="rectangleLogo != null">rectangle_logo,</if>
|
|
|
|
|
|
|
|
|
|
+ <if test="lotControl != null">lot_control,</if>
|
|
|
|
|
+
|
|
|
<if test="signMap != null">sign_map,</if>
|
|
<if test="signMap != null">sign_map,</if>
|
|
|
|
|
|
|
|
<if test="videoCover != null">video_cover,</if>
|
|
<if test="videoCover != null">video_cover,</if>
|
|
@@ -76,6 +80,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="schoolName != null">#{schoolName},</if>
|
|
<if test="schoolName != null">#{schoolName},</if>
|
|
|
<if test="circularLogo != null">#{circularLogo},</if>
|
|
<if test="circularLogo != null">#{circularLogo},</if>
|
|
|
<if test="rectangleLogo != null">#{rectangleLogo},</if>
|
|
<if test="rectangleLogo != null">#{rectangleLogo},</if>
|
|
|
|
|
+ <if test="lotControl != null">#{lotControl},</if>
|
|
|
<if test="signMap != null">#{signMap},</if>
|
|
<if test="signMap != null">#{signMap},</if>
|
|
|
<if test="videoCover != null">#{videoCover},</if>
|
|
<if test="videoCover != null">#{videoCover},</if>
|
|
|
<if test="operationGuide != null">#{operationGuide},</if>
|
|
<if test="operationGuide != null">#{operationGuide},</if>
|
|
@@ -93,6 +98,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="schoolName != null">school_name = #{schoolName},</if>
|
|
<if test="schoolName != null">school_name = #{schoolName},</if>
|
|
|
<if test="circularLogo != null">circular_logo = #{circularLogo},</if>
|
|
<if test="circularLogo != null">circular_logo = #{circularLogo},</if>
|
|
|
<if test="rectangleLogo != null">rectangle_logo = #{rectangleLogo},</if>
|
|
<if test="rectangleLogo != null">rectangle_logo = #{rectangleLogo},</if>
|
|
|
|
|
+ <if test="lotControl != null">lot_control = #{lotControl},</if>
|
|
|
<if test="signMap != null">sign_map = #{signMap},</if>
|
|
<if test="signMap != null">sign_map = #{signMap},</if>
|
|
|
<if test="videoCover != null">video_cover = #{videoCover},</if>
|
|
<if test="videoCover != null">video_cover = #{videoCover},</if>
|
|
|
<if test="operationGuide != null">operation_guide = #{operationGuide},</if>
|
|
<if test="operationGuide != null">operation_guide = #{operationGuide},</if>
|