huliguo
2025-08-08 749570394745ae95ee65605eadb42800f42fa20a
src/main/java/com/linghu/service/TypeService.java
@@ -1,7 +1,10 @@
package com.linghu.service;
import com.linghu.model.common.ResponseResult;
import com.linghu.model.entity.Type;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
/**
 * @author xy
@@ -13,4 +16,9 @@
    public Type getTypeByName(String typeName);
    ResponseResult<Type> addType(Type type);
    ResponseResult<Void> batchDeleteTypes(List<Integer> typeIds);
    ResponseResult<List<Type>> pageList(Integer keywordId, Integer questionId, Integer isNow);
}