From 7de353fa99cfe82101c434b5d080f6a5a1945aac Mon Sep 17 00:00:00 2001 From: ‘liusuyi’ <1951119284@qq.com> Date: 星期五, 12 四月 2024 10:24:06 +0800 Subject: [PATCH] 提交部分备份 --- ard-work/src/main/resources/mapper/management3d/ArdTiles3dMapper.xml | 8 +------- 1 files changed, 1 insertions(+), 7 deletions(-) diff --git a/ard-work/src/main/resources/mapper/management3d/ArdTiles3dMapper.xml b/ard-work/src/main/resources/mapper/management3d/ArdTiles3dMapper.xml index b26a1ba..f7f2f24 100644 --- a/ard-work/src/main/resources/mapper/management3d/ArdTiles3dMapper.xml +++ b/ard-work/src/main/resources/mapper/management3d/ArdTiles3dMapper.xml @@ -25,7 +25,6 @@ <result property="createTime" column="create_time"/> <result property="updateBy" column="update_by"/> <result property="updateTime" column="update_time"/> - <result property="selected" column="selected"/> </resultMap> <sql id="selectArdTiles3dVo"> @@ -48,8 +47,7 @@ c.create_by, c.create_time, c.update_by, - c.update_time, - c.selected + c.update_time from ard_tiles3d c left join sys_dept d on d.dept_id = c.dept_id left join sys_user u on u.user_id = c.user_id @@ -58,7 +56,6 @@ <select id="selectArdTiles3dList" parameterType="ArdTiles3d" resultMap="ArdTiles3dResult"> <include refid="selectArdTiles3dVo"/> <where> - <if test="selected != null and selected != ''">and c.selected = #{selected}</if> <if test="tilesId != null and tilesId != ''">and c.tiles_id = #{tilesId}</if> <if test="tilesName != null and tilesName != ''">and c.tiles_name like '%'||#{tilesName}||'%'</if> <if test="tilesUrl != null and tilesUrl != ''">and c.tiles_url = #{tilesUrl}</if> @@ -114,7 +111,6 @@ <if test="createTime != null">create_time,</if> <if test="updateBy != null">update_by,</if> <if test="updateTime != null">update_time,</if> - <if test="selected != null">selected,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="tilesId != null">#{tilesId},</if> @@ -137,7 +133,6 @@ <if test="createTime != null">#{createTime},</if> <if test="updateBy != null">#{updateBy},</if> <if test="updateTime != null">#{updateTime},</if> - <if test="selected != null">#{selected},</if> </trim> </insert> @@ -167,7 +162,6 @@ <if test="createTime != null">create_time = #{createTime},</if> <if test="updateBy != null">update_by = #{updateBy},</if> <if test="updateTime != null">update_time = #{updateTime},</if> - <if test="selected != null">selected = #{selected},</if> </trim> where tiles_id = #{tilesId} </update> -- Gitblit v1.9.3