Commit 2106da6efe00f792ca04a719dcf854cb99234ee8

Authored by liujun001
1 parent 21d4c827

优化导入数据

Bsth-admin/src/main/java/com/ruoyi/service/impl/key/location/LinggangKeyWorkLocationServiceImpl.java
... ... @@ -44,8 +44,6 @@ import java.text.ParseException;
44 44 import java.util.*;
45 45 import java.util.stream.Collectors;
46 46  
47   -import static com.ruoyi.common.ConstDriverProperties.BC_TYPE_OUT;
48   -
49 47 @Slf4j
50 48 @Service
51 49 /**钥匙存放地址 Service实现类*/
... ... @@ -839,7 +837,7 @@ public class LinggangKeyWorkLocationServiceImpl extends ServiceImpl<LinggangKeyW
839 837 LinggangScheduling scheduling = new LinggangScheduling();
840 838 scheduling.setStartScheduleDate(DateUtil.shortDate(date));
841 839 scheduling.setEndScheduleDate(DateUtils.addDays(scheduling.getStartScheduleDate(), 1));
842   - scheduling.setBcType(BC_TYPE_OUT);
  840 +// scheduling.setBcType(BC_TYPE_OUT);
843 841 schedulings = schedulingService.list(scheduling);
844 842 if (CollectionUtils.isEmpty(schedulings)) {
845 843 log.info("没有查到排班信息:[{}]", date);
... ...