#
Junjie
2024-08-01 2ff08d144935938b91af4e725577882976ef4627
zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/service/TaskDetlLogService.java
@@ -3,6 +3,12 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.wms.asrs.entity.TaskDetlLog;
import java.util.List;
public interface TaskDetlLogService extends IService<TaskDetlLog> {
    List<TaskDetlLog> getTaskDetlLogByTaskId(Long taskId);
    List<Long> getTaskIdsByDetlId(Long detlId);
}