wuxw 2 lat temu
rodzic
commit
f75a881322

+ 4 - 4
java110-db/src/main/resources/mapper/order/CorderServiceDaoImplMapper.xml

@@ -63,10 +63,10 @@
             and t.app_id= #{appId}
         </if>
         <if test="startTime !=null and startTime != ''">
-            and t.createTime &gt;= #{startTime}
+            and t.create_time &gt;= #{startTime}
         </if>
         <if test="endTime !=null and endTime != ''">
-            and t.createTime &lt;= #{endTime}
+            and t.create_time &lt;= #{endTime}
         </if>
         <if test="staffNameLike !=null and staffNameLike != ''">
             and u.name like concat('%',#{staffNameLike},'%')
@@ -107,10 +107,10 @@
             and t.app_id= #{appId}
         </if>
         <if test="startTime !=null and startTime != ''">
-            and t.createTime &gt;= #{startTime}
+            and t.create_time &gt;= #{startTime}
         </if>
         <if test="endTime !=null and endTime != ''">
-            and t.createTime &lt;= #{endTime}
+            and t.create_time &lt;= #{endTime}
         </if>
         <if test="staffNameLike !=null and staffNameLike != ''">
             and u.name like concat('%',#{staffNameLike},'%')

+ 1 - 1
service-job/src/main/java/com/java110/job/importData/adapt/ImportCustomFeeQueueDataAdapt.java

@@ -85,7 +85,7 @@ public class ImportCustomFeeQueueDataAdapt extends DefaultImportData implements
         ImportCustomCreateFeeDto importExportMeterWaterDto = BeanConvertUtil.covertBean(data, ImportCustomCreateFeeDto.class);
 
         String communityId = importExportMeterWaterDto.getCommunityId();
-        String batchId = importExportMeterWaterDto.getCommunityId();
+        String batchId = importExportMeterWaterDto.getBatchId();
 
         doImportRoomCreateFee(importExportMeterWaterDto, batchId);
         doImportCarCreateFee(importExportMeterWaterDto, batchId);