guarantee-lsq 2 년 전
부모
커밋
66c56d5fed
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      platform-dao/src/main/resources/mapper/store/OutStoreFormMapper.xml

+ 3 - 3
platform-dao/src/main/resources/mapper/store/OutStoreFormMapper.xml

@@ -229,13 +229,13 @@ outstoreform.process_instance_id,
         select count(1) from t_out_store_form form
         <where>
             <if test="userId != null and userId != ''">
-                form.update_user_id = #{userId}
+                and form.update_user_id = #{userId}
             </if>
             <if test="status !=null ">
-                form.status = #{status}
+                and form.status = #{status}
             </if>
             <if test="outFlag != null">
-                form.out_flag = #{outFlag}
+                and form.out_flag = #{outFlag}
             </if>
         </where>
     </select>