12345678910111213141516171819 |
- 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);
- Object getByFusionId(Integer fusionId);
- }
|