skyouc
2025-03-03 58e4c139c07bec6ec087b786e1615f51f439327a
zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/service/TaskLogService.java
@@ -1,8 +1,12 @@
package com.zy.asrs.wms.asrs.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.wms.asrs.entity.TaskLog;
public interface TaskLogService extends IService<TaskLog> {
}
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);
}