liusheng
2024-03-08 d953c2a400cd1dcafd2ce987181905dc3713d2ca
smartor/src/main/java/com/smartor/mapper/SvyCategoryMapper.java
@@ -1,27 +1,29 @@
package com.smartor.mapper;
import java.util.List;
import com.smartor.domain.SvyCategory;
import org.apache.ibatis.annotations.Mapper;
/**
 * 问卷分类Mapper接口
 *
 *
 * @author ruoyi
 * @date 2023-03-02
 */
public interface SvyCategoryMapper
{
@Mapper
public interface SvyCategoryMapper {
    /**
     * 查询问卷分类
     *
     *
     * @param id 问卷分类主键
     * @return 问卷分类
     */
    public SvyCategory selectSvyCategoryById(Long id);
    public List<SvyCategory> selectSvyCategoryById(String categoryname);
    /**
     * 查询问卷分类列表
     *
     *
     * @param svyCategory 问卷分类
     * @return 问卷分类集合
     */
@@ -29,7 +31,7 @@
    /**
     * 新增问卷分类
     *
     *
     * @param svyCategory 问卷分类
     * @return 结果
     */
@@ -37,7 +39,7 @@
    /**
     * 修改问卷分类
     *
     *
     * @param svyCategory 问卷分类
     * @return 结果
     */
@@ -45,7 +47,7 @@
    /**
     * 删除问卷分类
     *
     *
     * @param id 问卷分类主键
     * @return 结果
     */
@@ -53,7 +55,7 @@
    /**
     * 批量删除问卷分类
     *
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */