zhangyuewww 3 年之前
父节点
当前提交
e264da75c2

+ 4 - 4
winsea-haixin-plugin-yiliangyiyun/src/main/resources/mapper/WeighingManagementMapper.xml

@@ -102,17 +102,17 @@
             AND a.management_type = #{managementType}
         </if>
         <if test="serviceManagementType != null and serviceManagementType != ''">
-            AND service_management_type = #{serviceManagementType}
+            AND a.service_management_type = #{serviceManagementType}
         </if>
         <if test="statusType != null and statusType != ''">
             <if test="statusType == 1">
-                AND status_flag='1'
+                AND a.status_flag='1'
             </if>
             <if test="statusType == 2">
-                AND status_flag='3'
+                AND a.status_flag='3'
             </if>
             <if test="statusType == 3">
-                AND status_flag='5'
+                AND a.status_flag='5'
             </if>
         </if>
         ORDER BY a.update_date DESC