fix
This commit is contained in:
@@ -27,6 +27,7 @@
|
||||
<result column="city" jdbcType="VARCHAR" property="city" />
|
||||
<result column="district" jdbcType="VARCHAR" property="district" />
|
||||
<result column="township" jdbcType="VARCHAR" property="township" />
|
||||
<result column="storage_status" jdbcType="TINYINT" property="storageStatus" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="allColumn">
|
||||
@@ -79,11 +80,8 @@
|
||||
#{pointStatus}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="request.storageStatus != null and request.storageStatus == 1">
|
||||
and point_status in (4,5,6,7)
|
||||
</if>
|
||||
<if test="request.storageStatus != null and request.storageStatus == 2">
|
||||
and point_status in (1,2,3,7)
|
||||
<if test="request.storageStatus != null">
|
||||
and storage_status = #{request.storageStatus}
|
||||
</if>
|
||||
<if test="request.operateUserId != null and request.operateUserId != ''">
|
||||
and operate_user_id = #{request.operateUserId}
|
||||
|
||||
Reference in New Issue
Block a user