|
|
@@ -44,7 +44,7 @@
|
|
|
<result property="addressName" column="address_name" jdbcType="VARCHAR"/>
|
|
|
<result property="assistProcess" column="assist_process" jdbcType="INTEGER"/>
|
|
|
<result property="alone" column="alone" jdbcType="INTEGER"/>
|
|
|
- <result property="processStatus" column="process_status" jdbcType="VARCHAR"/>
|
|
|
+ <result property="processStatus" column="process_status" jdbcType="INTEGER"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="PublicReleaseAllSql">
|
|
|
@@ -281,7 +281,7 @@
|
|
|
<if test="alone != null">
|
|
|
alone = #{alone},
|
|
|
</if>
|
|
|
- <if test="processStatus != null and processStatus != ''">
|
|
|
+ <if test="processStatus != null">
|
|
|
process_status = #{processStatus},
|
|
|
</if>
|
|
|
</set>
|
|
|
@@ -418,7 +418,7 @@
|
|
|
<if test="alone != null">
|
|
|
and alone = #{alone}
|
|
|
</if>
|
|
|
- <if test="processStatus != null and processStatus != ''">
|
|
|
+ <if test="processStatus != null">
|
|
|
and process_status = #{processStatus}
|
|
|
</if>
|
|
|
</where>
|
|
|
@@ -555,7 +555,7 @@
|
|
|
<if test="alone != null">
|
|
|
and alone = #{alone}
|
|
|
</if>
|
|
|
- <if test="processStatus != null and processStatus != ''">
|
|
|
+ <if test="processStatus != null">
|
|
|
and process_status = #{processStatus}
|
|
|
</if>
|
|
|
</where>
|
|
|
@@ -1256,5 +1256,3 @@
|
|
|
|
|
|
</mapper>
|
|
|
|
|
|
-
|
|
|
-
|