pjb
2025-06-19 eb42d8c04b0eda4795d8e1909949bf820701ac7f
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);
}