|
|
|
@ -9,12 +9,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="unitName" column="unit_name" /> |
|
|
|
|
<result property="appId" column="app_id" /> |
|
|
|
|
<result property="privateKey" column="private_key" /> |
|
|
|
|
<result property="stauts" column="stauts" /> |
|
|
|
|
<result property="status" column="status" /> |
|
|
|
|
<result property="createTime" column="create_time" /> |
|
|
|
|
</resultMap> |
|
|
|
|
|
|
|
|
|
<sql id="selectPrivateKeyVo"> |
|
|
|
|
select id, unit_name, app_id, private_key, stauts, create_time from private_key |
|
|
|
|
select id, unit_name, app_id, private_key, status, create_time from private_key |
|
|
|
|
</sql> |
|
|
|
|
|
|
|
|
|
<select id="selectPrivateKeyList" parameterType="PrivateKey" resultMap="PrivateKeyResult"> |
|
|
|
@ -23,7 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="unitName != null and unitName != ''"> and unit_name like concat('%', #{unitName}, '%')</if> |
|
|
|
|
<if test="appId != null and appId != ''"> and app_id = #{appId}</if> |
|
|
|
|
<if test="privateKey != null and privateKey != ''"> and private_key = #{privateKey}</if> |
|
|
|
|
<if test="stauts != null and stauts != ''"> and stauts = #{stauts}</if> |
|
|
|
|
<if test="status != null and status != ''"> and status = #{status}</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
@ -42,14 +42,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="unitName != null">unit_name,</if> |
|
|
|
|
<if test="appId != null">app_id,</if> |
|
|
|
|
<if test="privateKey != null">private_key,</if> |
|
|
|
|
<if test="stauts != null">stauts,</if> |
|
|
|
|
<if test="status != null">status,</if> |
|
|
|
|
<if test="createTime != null">create_time,</if> |
|
|
|
|
</trim> |
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|
|
|
|
<if test="unitName != null">#{unitName},</if> |
|
|
|
|
<if test="appId != null">#{appId},</if> |
|
|
|
|
<if test="privateKey != null">#{privateKey},</if> |
|
|
|
|
<if test="stauts != null">#{stauts},</if> |
|
|
|
|
<if test="status != null">#{status},</if> |
|
|
|
|
<if test="createTime != null">#{createTime},</if> |
|
|
|
|
</trim> |
|
|
|
|
</insert> |
|
|
|
@ -60,7 +60,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="unitName != null">unit_name = #{unitName},</if> |
|
|
|
|
<if test="appId != null">app_id = #{appId},</if> |
|
|
|
|
<if test="privateKey != null">private_key = #{privateKey},</if> |
|
|
|
|
<if test="stauts != null">stauts = #{stauts},</if> |
|
|
|
|
<if test="status != null">status = #{status},</if> |
|
|
|
|
<if test="createTime != null">create_time = #{createTime},</if> |
|
|
|
|
</trim> |
|
|
|
|
where id = #{id} |
|
|
|
|