소스 검색

Merge branch 'master' of http://47.100.37.243:10080/ZHOU/yunsu

# Conflicts:
#	cloud-model/src/main/java/com/hssx/cloudmodel/service/impl/MouldFileServiceImpl.java
5 년 전
부모
커밋
322aa2c50c
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      cloud-model/src/main/resources/mapper/MouldOperationDynamicsMapper.xml

+ 3 - 3
cloud-model/src/main/resources/mapper/MouldOperationDynamicsMapper.xml

@@ -23,13 +23,13 @@
     <sql id="Base_Column_List">
         id, file_id, operator_id, operator_name, indate, file_name, belong_type, content, mould_id, is_pass, applicant_id, applicant_name, is_update
     </sql>
-    <select id="selectOperationDynamicsList">
+    <select id="selectOperationDynamicsList" resultMap="BaseResultMap">
         select
         <include refid="Base_Column_List"/>
         from
         tb_mould_operation_dynamics
         where
-        mould_id
-        indate between #{startTime} and #{endTime}
+        mould_id = #{userVO.mouldId}
+        and indate between #{startTime} and #{endTime}
     </select>
 </mapper>