zwl
4 天以前 7f1ee24bca80d28851a95ee2019ea6faeb70d81c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.core.common.Cools;
import com.core.common.DateUtils;
import com.core.exception.CoolException;
import com.zy.asrs.entity.AgvTask;
import com.zy.asrs.entity.WaitPakin;
import com.zy.asrs.mapper.TaskMapper;
import com.zy.asrs.service.TaskService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.Date;
import java.util.List;
import java.util.concurrent.TimeUnit;
 
@Service
public class TaskServiceImpl extends ServiceImpl<TaskMapper, AgvTask> implements TaskService {
 
}