| @@ -8,8 +8,8 @@ | |||||
| <result column="type" jdbcType="INTEGER" property="type"/> | <result column="type" jdbcType="INTEGER" property="type"/> | ||||
| <result column="user_version" jdbcType="VARCHAR" property="userVersion"/> | <result column="user_version" jdbcType="VARCHAR" property="userVersion"/> | ||||
| <result column="version_desc" jdbcType="VARCHAR" property="versionDesc"/> | <result column="version_desc" jdbcType="VARCHAR" property="versionDesc"/> | ||||
| <result column="release_status" jdbcType="VARCHAR" property="releaseStatus"/> | |||||
| <result column="release_err_code" jdbcType="INTEGER" property="releaseErrCode"/> | |||||
| <result column="release_status" jdbcType="INTEGER" property="releaseStatus"/> | |||||
| <result column="release_err_code" jdbcType="VARCHAR" property="releaseErrCode"/> | |||||
| <result column="release_time" jdbcType="TIMESTAMP" property="releaseTime"/> | <result column="release_time" jdbcType="TIMESTAMP" property="releaseTime"/> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -98,7 +98,7 @@ | |||||
| and c.`id` = #{id} | and c.`id` = #{id} | ||||
| </if> | </if> | ||||
| <if test=" null != tenantId "> | <if test=" null != tenantId "> | ||||
| and `tenant_id` = #{tenantId} | |||||
| and c.`tenant_id` = #{tenantId} | |||||
| </if> | </if> | ||||
| <if test=" null != appId "> | <if test=" null != appId "> | ||||
| and c.`app_id` = #{appId} | and c.`app_id` = #{appId} | ||||
| @@ -116,7 +116,7 @@ | |||||
| and c.`release_time` = #{releaseTime} | and c.`release_time` = #{releaseTime} | ||||
| </if> | </if> | ||||
| <if test=" null != name "> | <if test=" null != name "> | ||||
| and a.`name` like concat('%', #{name},'%') | |||||
| and a.`name` = #{name} | |||||
| </if> | </if> | ||||
| <if test=" null != ids "> | <if test=" null != ids "> | ||||
| and id in | and id in | ||||