| | |
| | | package com.zy.asrs.wms.asrs.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.zy.asrs.wms.asrs.entity.TaskLog; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface TaskLogService extends IService<TaskLog> { |
| | | |
| | | List<TaskLog> getByOrderDetlId(Long orderDetlId); |
| | | |
| | | } |
| | | package com.zy.asrs.wms.asrs.service;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.zy.asrs.wms.asrs.entity.TaskLog;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | public interface TaskLogService extends IService<TaskLog> {
|
| | |
|
| | | List<TaskLog> getByOrderDetlId(Long orderDetlId);
|
| | |
|
| | | }
|