|
@@ -4,6 +4,7 @@ import com.fdkankan.fusion.entity.CaseTag;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.fdkankan.fusion.entity.CaseTagPoint;
|
|
import com.fdkankan.fusion.entity.CaseTagPoint;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
* 服务类
|
|
* 服务类
|
|
@@ -14,7 +15,7 @@ import com.fdkankan.fusion.entity.CaseTagPoint;
|
|
*/
|
|
*/
|
|
public interface ICaseTagService extends IService<CaseTag> {
|
|
public interface ICaseTagService extends IService<CaseTag> {
|
|
|
|
|
|
- Object allList(Integer caseId, String tagTitle);
|
|
|
|
|
|
+ List<CaseTag> allList(Integer caseId, String tagTitle);
|
|
|
|
|
|
void updateDFHotIcon(Integer iconId);
|
|
void updateDFHotIcon(Integer iconId);
|
|
}
|
|
}
|