소스 검색

数据大屏详情

zhangchen 1 개월 전
부모
커밋
790a87cf11
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      alien-entity/src/main/resources/mapper/ManagementInfoMapper.xml

+ 2 - 2
alien-entity/src/main/resources/mapper/ManagementInfoMapper.xml

@@ -863,10 +863,10 @@
         WHERE
             `status` = 2
         <if test="startTime != null and startTime != ''" >
-            AND used_time > #{startTime}
+            AND `order`.updated_time > #{startTime}
         </if>
         <if test="endTime != null and endTime != ''" >
-            AND used_time &lt; #{endTime}
+            AND `order`.updated_time &lt; #{endTime}
         </if>
         <if test="storeId != null and storeId != ''" >
             AND store_id like concat('%',#{storeId},'%')