package com.template.services; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.template.model.pojo.SmartAuthorGroup; import com.template.model.pojo.SmartAuthorGroup; import com.baomidou.mybatisplus.extension.service.IService; import com.template.model.result.PageUtils; import java.util.List; /** *

* 服务类 *

* * @author ceshi * @since 2023-12-04 */ public interface SmartAuthorGroupService extends IService { int insertSmartAuthorGroup(SmartAuthorGroup rns); int updateSmartAuthorGroup(SmartAuthorGroup rns); PageUtils queryPageSmartAuthorGroups(int currentPage, int pageCount, String name); int deleteSmartAuthorGroupById(int id); SmartAuthorGroup getSmartById(int id); List getAuthorGroupList(); List getAuthorGroupByKey(QueryWrapper queryWrapper); List smartAuthorGroup(Integer userId); }