Browse Source

数据大屏详情

zhangchen 1 month ago
parent
commit
790a87cf11
1 changed files with 2 additions and 2 deletions
  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},'%')