|
|
@@ -1,25 +1,18 @@
|
|
|
package org.jeecg.modules.quartz.job;
|
|
|
|
|
|
|
|
|
-import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.jeecg.modules.business.entity.BusRoomsLivingOrder;
|
|
|
-import org.jeecg.modules.business.service.IBusOrderFeeService;
|
|
|
import org.jeecg.modules.business.service.IBusRoomBookingOrdersService;
|
|
|
-import org.jeecg.modules.business.service.IBusRoomsLivingOrderService;
|
|
|
-import org.jeecg.modules.rooms.Enum.RoomStatusEnum;
|
|
|
-import org.jeecg.modules.rooms.entity.CesAllDayPriceRule;
|
|
|
-import org.jeecg.modules.rooms.entity.CesRooms;
|
|
|
-import org.jeecg.modules.rooms.service.CesAllDayPriceRuleServiceImpl;
|
|
|
-import org.jeecg.modules.rooms.service.CesRoomsServiceImpl;
|
|
|
import org.quartz.Job;
|
|
|
import org.quartz.JobExecutionContext;
|
|
|
import org.quartz.JobExecutionException;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
-import java.util.List;
|
|
|
-import java.util.stream.Collectors;
|
|
|
|
|
|
+/**
|
|
|
+ * 全天房 超时房间转按照全天房计费规则转为全天房,新增全天房计费账单,延房。。。
|
|
|
+ * todo : 基本逻辑fix 待优化处理
|
|
|
+ */
|
|
|
@Slf4j
|
|
|
public class LivingRoomOrderFeeJob implements Job {
|
|
|
|