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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.service ;
import com.baomidou.mybatisplus.mapper.Wrapper ;
import com.baomidou.mybatisplus.service.IService ;
import com.utils.PageUtils ;
import com.entity.LeixingEntity ; // 导入类型实体类
import java.util.List ;
import java.util.Map ;
import com.entity.vo.LeixingVO ;
import org.apache.ibatis.annotations.Param ;
import com.entity.view.LeixingView ; // 导入类型视图类
/**
* 类型
*
* @author
* @email
* @date 2023-02-21 09:46:06
*/
public interface LeixingService extends IService < LeixingEntity > {
/**
* 查询分页数据
* @param params 查询参数
* @return 分页结果
*/
PageUtils queryPage ( Map < String , Object > params ) ;
/**
* 查询类型列表, 返回VO对象列表
* @param wrapper 查询条件包装器
* @return LeixingVO对象列表
*/
List < LeixingVO > selectListVO ( Wrapper < LeixingEntity > wrapper ) ;
/**
* 查询单个类型, 返回VO对象
* @param wrapper 查询条件包装器
* @return 单个LeixingVO对象
*/
LeixingVO selectVO ( @Param ( "ew" ) Wrapper < LeixingEntity > wrapper ) ;
/**
* 查询类型列表,返回视图对象列表
* @param wrapper 查询条件包装器
* @return LeixingView对象列表
*/
List < LeixingView > selectListView ( Wrapper < LeixingEntity > wrapper ) ;
/**
* 查询单个类型,返回视图对象
* @param wrapper 查询条件包装器
* @return 单个LeixingView对象
*/
LeixingView selectView ( @Param ( "ew" ) Wrapper < LeixingEntity > wrapper ) ;
/**
* 带条件的查询分页数据
* @param params 查询参数
* @param wrapper 查询条件包装器
* @return 分页结果
*/
PageUtils queryPage ( Map < String , Object > params , Wrapper < LeixingEntity > wrapper ) ;
}