| | |
| | | package com.zy.asrs.wms.asrs.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.zy.asrs.wms.asrs.entity.TaskDetl; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface TaskDetlService extends IService<TaskDetl> { |
| | | |
| | | List<TaskDetl> getTaskDetlByTaskId(Long taskId); |
| | | |
| | | List<Long> getTaskIdsByDetlId(Long detlId); |
| | | |
| | | List<TaskDetl> parseDetl(List<TaskDetl> list); |
| | | |
| | | } |
| | | package com.zy.asrs.wms.asrs.service;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.zy.asrs.wms.asrs.entity.TaskDetl;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | public interface TaskDetlService extends IService<TaskDetl> {
|
| | |
|
| | | List<TaskDetl> getTaskDetlByTaskId(Long taskId);
|
| | |
|
| | | List<Long> getTaskIdsByDetlId(Long detlId);
|
| | |
|
| | | List<TaskDetl> parseDetl(List<TaskDetl> list);
|
| | |
|
| | | }
|