|
|
@@ -4,11 +4,14 @@
|
|
|
<resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.TestAaa" >
|
|
|
<id column="id" property="id" jdbcType="INTEGER" />
|
|
|
<result column="del_flag" property="delFlag" jdbcType="CHAR" />
|
|
|
+ <result column="image_url" property="imageUrl" jdbcType="VARCHAR" />
|
|
|
<result column="test_name" property="testName" jdbcType="VARCHAR" />
|
|
|
<result column="remark" property="remark" jdbcType="VARCHAR" />
|
|
|
- <result column="image_url" property="imageUrl" jdbcType="VARCHAR" />
|
|
|
- <result column="test_time" property="testTime" jdbcType="TIMESTAMP" />
|
|
|
<result column="multi_select" property="multiSelect" jdbcType="VARCHAR" />
|
|
|
+ <result column="test_time" property="testTime" jdbcType="TIMESTAMP" />
|
|
|
+ <result column="login_user" property="loginUser" jdbcType="VARCHAR" />
|
|
|
+ <result column="testc_time" property="testcTime" jdbcType="TIMESTAMP" />
|
|
|
+ <result column="testc_date" property="testcDate" jdbcType="TIMESTAMP" />
|
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List" >
|
|
|
<trim suffixOverrides="," >
|
|
|
@@ -16,15 +19,21 @@
|
|
|
|
|
|
del_flag,
|
|
|
|
|
|
+ image_url,
|
|
|
+
|
|
|
test_name,
|
|
|
|
|
|
remark,
|
|
|
|
|
|
- image_url,
|
|
|
+ multi_select,
|
|
|
|
|
|
test_time,
|
|
|
|
|
|
- multi_select,
|
|
|
+ login_user,
|
|
|
+
|
|
|
+ testc_time,
|
|
|
+
|
|
|
+ testc_date,
|
|
|
|
|
|
</trim>
|
|
|
</sql>
|
|
|
@@ -46,6 +55,9 @@
|
|
|
</if>
|
|
|
<if test="delFlag!= null" >
|
|
|
del_flag,
|
|
|
+ </if>
|
|
|
+ <if test="imageUrl!= null" >
|
|
|
+ image_url,
|
|
|
</if>
|
|
|
<if test="testName!= null" >
|
|
|
test_name,
|
|
|
@@ -53,14 +65,20 @@
|
|
|
<if test="remark!= null" >
|
|
|
remark,
|
|
|
</if>
|
|
|
- <if test="imageUrl!= null" >
|
|
|
- image_url,
|
|
|
+ <if test="multiSelect!= null" >
|
|
|
+ multi_select,
|
|
|
</if>
|
|
|
<if test="testTime!= null" >
|
|
|
test_time,
|
|
|
</if>
|
|
|
- <if test="multiSelect!= null" >
|
|
|
- multi_select,
|
|
|
+ <if test="loginUser!= null" >
|
|
|
+ login_user,
|
|
|
+ </if>
|
|
|
+ <if test="testcTime!= null" >
|
|
|
+ testc_time,
|
|
|
+ </if>
|
|
|
+ <if test="testcDate!= null" >
|
|
|
+ testc_date,
|
|
|
</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
@@ -69,6 +87,9 @@
|
|
|
</if>
|
|
|
<if test="delFlag != null" >
|
|
|
#{delFlag,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="imageUrl != null" >
|
|
|
+ #{imageUrl,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="testName != null" >
|
|
|
#{testName,jdbcType=VARCHAR},
|
|
|
@@ -76,14 +97,20 @@
|
|
|
<if test="remark != null" >
|
|
|
#{remark,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="imageUrl != null" >
|
|
|
- #{imageUrl,jdbcType=VARCHAR},
|
|
|
+ <if test="multiSelect != null" >
|
|
|
+ #{multiSelect,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="testTime != null" >
|
|
|
#{testTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
- <if test="multiSelect != null" >
|
|
|
- #{multiSelect,jdbcType=VARCHAR},
|
|
|
+ <if test="loginUser != null" >
|
|
|
+ #{loginUser,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="testcTime != null" >
|
|
|
+ #{testcTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="testcDate != null" >
|
|
|
+ #{testcDate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
@@ -95,6 +122,9 @@
|
|
|
</if>
|
|
|
<if test="delFlag != null" >
|
|
|
del_flag= #{delFlag,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="imageUrl != null" >
|
|
|
+ image_url= #{imageUrl,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="testName != null" >
|
|
|
test_name= #{testName,jdbcType=VARCHAR},
|
|
|
@@ -102,27 +132,46 @@
|
|
|
<if test="remark != null" >
|
|
|
remark= #{remark,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="imageUrl != null" >
|
|
|
- image_url= #{imageUrl,jdbcType=VARCHAR},
|
|
|
+ <if test="multiSelect != null" >
|
|
|
+ multi_select= #{multiSelect,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="testTime != null" >
|
|
|
test_time= #{testTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
- <if test="multiSelect != null" >
|
|
|
- multi_select= #{multiSelect,jdbcType=VARCHAR},
|
|
|
+ <if test="loginUser != null" >
|
|
|
+ login_user= #{loginUser,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="testcTime != null" >
|
|
|
+ testc_time= #{testcTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="testcDate != null" >
|
|
|
+ testc_date= #{testcDate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
</set>
|
|
|
- where id = #{id,jdbcType=INTEGER}
|
|
|
+ where
|
|
|
+ <if test="id != null and !"".equals(id)">
|
|
|
+ id = #{id,jdbcType=INTEGER}
|
|
|
+ </if>
|
|
|
+
|
|
|
+ <if test="idStr != null and !"".equals(idStr)">
|
|
|
+ id in (${idStr})
|
|
|
+ </if>
|
|
|
</update>
|
|
|
<select id="queryTestAaaByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.TestAaa">
|
|
|
select <include refid="Base_Column_List"/> from test_aaa
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
+ <if test="record.idStr != null and !"".equals(record.idStr)">
|
|
|
+ and id in (${record.idStr})
|
|
|
+ </if>
|
|
|
<if test="record.id != null and !"".equals(record.id)">
|
|
|
and id = #{record.id}
|
|
|
</if>
|
|
|
<if test="record.delFlag != null and !"".equals(record.delFlag)">
|
|
|
and del_flag = #{record.delFlag}
|
|
|
+ </if>
|
|
|
+ <if test="record.imageUrl != null and !"".equals(record.imageUrl)">
|
|
|
+ and image_url = #{record.imageUrl}
|
|
|
</if>
|
|
|
<if test="record.testName != null and !"".equals(record.testName)">
|
|
|
and test_name = #{record.testName}
|
|
|
@@ -130,22 +179,29 @@
|
|
|
<if test="record.remark != null and !"".equals(record.remark)">
|
|
|
and remark = #{record.remark}
|
|
|
</if>
|
|
|
- <if test="record.imageUrl != null and !"".equals(record.imageUrl)">
|
|
|
- and image_url = #{record.imageUrl}
|
|
|
+ <if test="record.multiSelect != null and !"".equals(record.multiSelect)">
|
|
|
+ and multi_select = #{record.multiSelect}
|
|
|
</if>
|
|
|
<if test="record.testTime != null and !"".equals(record.testTime)">
|
|
|
and test_time = #{record.testTime}
|
|
|
</if>
|
|
|
- <if test="record.multiSelect != null and !"".equals(record.multiSelect)">
|
|
|
- and multi_select = #{record.multiSelect}
|
|
|
+ <if test="record.loginUser != null and !"".equals(record.loginUser)">
|
|
|
+ and login_user = #{record.loginUser}
|
|
|
+ </if>
|
|
|
+ <if test="record.testcTime != null and !"".equals(record.testcTime)">
|
|
|
+ and testc_time = #{record.testcTime}
|
|
|
+ </if>
|
|
|
+ <if test="record.testcDate != null and !"".equals(record.testcDate)">
|
|
|
+ and testc_date = #{record.testcDate}
|
|
|
</if>
|
|
|
<if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
<trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR test_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR image_url LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR test_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
OR remark LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR image_url LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR multi_select LIKE concat('%',#{record.searchKey},'%')
|
|
|
- </trim>
|
|
|
+ OR multi_select LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR login_user LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ </trim>
|
|
|
</if>
|
|
|
|
|
|
<if test="record.advancedQuery != null and !"".equals(record.advancedQuery)">
|
|
|
@@ -204,11 +260,17 @@
|
|
|
select <include refid="Base_Column_List"/> from test_aaa
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
+ <if test="idStr != null and !"".equals(idStr)">
|
|
|
+ and id in (${idStr})
|
|
|
+ </if>
|
|
|
<if test="id != null and !"".equals(id)">
|
|
|
and id = #{id}
|
|
|
</if>
|
|
|
<if test="delFlag != null and !"".equals(delFlag)">
|
|
|
and del_flag = #{delFlag}
|
|
|
+ </if>
|
|
|
+ <if test="imageUrl != null and !"".equals(imageUrl)">
|
|
|
+ and image_url = #{imageUrl}
|
|
|
</if>
|
|
|
<if test="testName != null and !"".equals(testName)">
|
|
|
and test_name = #{testName}
|
|
|
@@ -216,22 +278,29 @@
|
|
|
<if test="remark != null and !"".equals(remark)">
|
|
|
and remark = #{remark}
|
|
|
</if>
|
|
|
- <if test="imageUrl != null and !"".equals(imageUrl)">
|
|
|
- and image_url = #{imageUrl}
|
|
|
+ <if test="multiSelect != null and !"".equals(multiSelect)">
|
|
|
+ and multi_select = #{multiSelect}
|
|
|
</if>
|
|
|
<if test="testTime != null and !"".equals(testTime)">
|
|
|
and test_time = #{testTime}
|
|
|
</if>
|
|
|
- <if test="multiSelect != null and !"".equals(multiSelect)">
|
|
|
- and multi_select = #{multiSelect}
|
|
|
+ <if test="loginUser != null and !"".equals(loginUser)">
|
|
|
+ and login_user = #{loginUser}
|
|
|
+ </if>
|
|
|
+ <if test="testcTime != null and !"".equals(testcTime)">
|
|
|
+ and testc_time = #{testcTime}
|
|
|
+ </if>
|
|
|
+ <if test="testcDate != null and !"".equals(testcDate)">
|
|
|
+ and testc_date = #{testcDate}
|
|
|
</if>
|
|
|
<if test="searchKey != null and !"".equals(searchKey)">
|
|
|
<trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR test_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR image_url LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR test_name LIKE concat('%',#{searchKey},'%')
|
|
|
OR remark LIKE concat('%',#{searchKey},'%')
|
|
|
- OR image_url LIKE concat('%',#{searchKey},'%')
|
|
|
- OR multi_select LIKE concat('%',#{searchKey},'%')
|
|
|
- </trim>
|
|
|
+ OR multi_select LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR login_user LIKE concat('%',#{searchKey},'%')
|
|
|
+ </trim>
|
|
|
</if>
|
|
|
<if test="advancedQuery != null and !"".equals(advancedQuery)">
|
|
|
<foreach item="item" index="index" collection="advancedQuery.split('_;')">
|
|
|
@@ -294,6 +363,9 @@
|
|
|
</if>
|
|
|
<if test="delFlag != null and !"".equals(delFlag)">
|
|
|
and del_flag = #{delFlag}
|
|
|
+ </if>
|
|
|
+ <if test="imageUrl != null and !"".equals(imageUrl)">
|
|
|
+ and image_url = #{imageUrl}
|
|
|
</if>
|
|
|
<if test="testName != null and !"".equals(testName)">
|
|
|
and test_name = #{testName}
|
|
|
@@ -301,14 +373,20 @@
|
|
|
<if test="remark != null and !"".equals(remark)">
|
|
|
and remark = #{remark}
|
|
|
</if>
|
|
|
- <if test="imageUrl != null and !"".equals(imageUrl)">
|
|
|
- and image_url = #{imageUrl}
|
|
|
+ <if test="multiSelect != null and !"".equals(multiSelect)">
|
|
|
+ and multi_select = #{multiSelect}
|
|
|
</if>
|
|
|
<if test="testTime != null and !"".equals(testTime)">
|
|
|
and test_time = #{testTime}
|
|
|
</if>
|
|
|
- <if test="multiSelect != null and !"".equals(multiSelect)">
|
|
|
- and multi_select = #{multiSelect}
|
|
|
+ <if test="loginUser != null and !"".equals(loginUser)">
|
|
|
+ and login_user = #{loginUser}
|
|
|
+ </if>
|
|
|
+ <if test="testcTime != null and !"".equals(testcTime)">
|
|
|
+ and testc_time = #{testcTime}
|
|
|
+ </if>
|
|
|
+ <if test="testcDate != null and !"".equals(testcDate)">
|
|
|
+ and testc_date = #{testcDate}
|
|
|
</if>
|
|
|
|
|
|
</where>
|
|
|
@@ -316,15 +394,20 @@
|
|
|
</select>
|
|
|
<update id="delete">
|
|
|
UPDATE test_aaa SET del_flag = 'Y'
|
|
|
- <where>
|
|
|
- AND id = #{id}
|
|
|
- </where>
|
|
|
+ where
|
|
|
+ <if test="id != null and !"".equals(id)">
|
|
|
+ id = #{id,jdbcType=INTEGER}
|
|
|
+ </if>
|
|
|
+
|
|
|
+ <if test="idStr != null and !"".equals(idStr)">
|
|
|
+ id in (${idStr})
|
|
|
+ </if>
|
|
|
</update>
|
|
|
<select id="query" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.TestAaa">
|
|
|
select <include refid="Base_Column_List"/> from test_aaa
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
- </where>
|
|
|
+ </where>
|
|
|
order by id desc
|
|
|
</select>
|
|
|
</mapper>
|