skyouc
2025-07-03 db2c3d7fe3d1e89b49b9628f408ba883dc75dc51
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);
}