You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.5 KiB
36 lines
1.5 KiB
package com.service;
|
|
|
|
import com.baomidou.mybatisplus.mapper.Wrapper;
|
|
import com.baomidou.mybatisplus.service.IService;
|
|
import com.utils.PageUtils;
|
|
import com.entity.SystemintroEntity;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import com.entity.vo.SystemintroVO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import com.entity.view.SystemintroView;
|
|
/**
|
|
* 关于我们
|
|
*
|
|
* @author // 作者信息
|
|
* @email // 邮箱信息
|
|
* @date 2023-02-21 09:46:06 // 创建日期
|
|
*/
|
|
public interface SystemintroService extends IService<SystemintroEntity> { // 声明一个接口,扩展 IService 用于基本的 CRUD 操作
|
|
|
|
PageUtils queryPage(Map<String, Object> params); // 根据传入的参数进行分页查询,并返回分页结果
|
|
|
|
List<SystemintroVO> selectListVO(Wrapper<SystemintroEntity> wrapper); // 根据条件包装器查询并返回 SystemintroVO 列表
|
|
|
|
SystemintroVO selectVO(@Param("ew") Wrapper<SystemintroEntity> wrapper); // 根据条件包装器查询并返回单个 SystemintroVO 对象
|
|
|
|
List<SystemintroView> selectListView(Wrapper<SystemintroEntity> wrapper); // 根据条件包装器查询并返回 SystemintroView 列表
|
|
|
|
SystemintroView selectView(@Param("ew") Wrapper<SystemintroEntity> wrapper); // 根据条件包装器查询并返回单个 SystemintroView 对象
|
|
|
|
PageUtils queryPage(Map<String, Object> params, Wrapper<SystemintroEntity> wrapper); // 根据参数和条件包装器进行分页查询,并返回分页结果
|
|
|
|
}
|
|
|
|
|