Parcourir la source

数据大屏详情

zhangchen il y a 1 mois
Parent
commit
790a87cf11

+ 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},'%')