| | |
| | | <result property="campus" column="campus"/> |
| | | <result property="otherdata" column="otherdata"/> |
| | | <result property="richText" column="rich_text"/> |
| | | <result property="hetype" column="hetype"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectHeLibraryVo"> |
| | | select id, |
| | | classification, |
| | | hetype, |
| | | assortid, |
| | | preachname, |
| | | version, |
| | |
| | | <if test="labelInfo != null and labelInfo != ''">and label_info = #{labelInfo}</if> |
| | | <if test="campus != null and campus != ''">and campus = #{campus}</if> |
| | | <if test="richText != null and richText != ''">and rich_text = #{richText}</if> |
| | | <if test="hetype != null and hetype != ''">and hetype = #{hetype}</if> |
| | | </where> |
| | | </select> |
| | | |
| | |
| | | <if test="campus != null">campus,</if> |
| | | <if test="otherdata != null">otherdata,</if> |
| | | <if test="richText != null and richText != ''">rich_text,</if> |
| | | <if test="hetype != null and hetype != ''">hetype,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="classification != null">#{classification},</if> |
| | |
| | | <if test="campus != null">#{campus},</if> |
| | | <if test="otherdata != null">#{otherdata},</if> |
| | | <if test="richText != null and richText != ''">#{richText},</if> |
| | | <if test="hetype != null and hetype != ''">#{hetype},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | |
| | | <if test="campus != null">campus = #{campus},</if> |
| | | <if test="otherdata != null">otherdata = #{otherdata},</if> |
| | | <if test="richText != null and richText != ''">rich_text = #{richText},</if> |
| | | <if test="hetype != null and hetype != ''">hetype = #{hetype},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
| | | </mapper> |