Browse Source

[发布状态][修改]:发布状态信息修改

release
Stormeye Wu 7 years ago
parent
commit
865572fb70
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      mallinkService/src/main/resources/mapper/WxWeappReleaseStatusMapper.xml

+ 4
- 4
mallinkService/src/main/resources/mapper/WxWeappReleaseStatusMapper.xml View File

@@ -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


Loading…
Cancel
Save