| 1234567891011121314151617 |
- package com.fdkankan.fusion.service;
- import com.fdkankan.fusion.entity.CasePath;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2024-12-10
- */
- public interface ICasePathService extends IService<CasePath> {
- Object getByCaseId(Integer caseId);
- }
|