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.dao ;
import com.entity.YonghuEntity ;
import com.baomidou.mybatisplus.mapper.BaseMapper ;
import java.util.List ;
import java.util.Map ;
import com.baomidou.mybatisplus.mapper.Wrapper ;
import com.baomidou.mybatisplus.plugins.pagination.Pagination ;
import org.apache.ibatis.annotations.Param ;
import com.entity.vo.YonghuVO ;
import com.entity.view.YonghuView ;
/**
* 用户数据访问对象接口, 继承自MyBatis-Plus的BaseMapper。
* 提供对用户实体( YonghuEntity) 的数据库操作方法。
*/
public interface YonghuDao extends BaseMapper < YonghuEntity > {
// 根据条件查询用户视图对象列表
List < YonghuVO > selectListVO ( @Param ( "ew" ) Wrapper < YonghuEntity > wrapper ) ;
// 根据条件查询单个用户视图对象
YonghuVO selectVO ( @Param ( "ew" ) Wrapper < YonghuEntity > wrapper ) ;
// 根据条件查询用户视图对象列表
List < YonghuView > selectListView ( @Param ( "ew" ) Wrapper < YonghuEntity > wrapper ) ;
// 根据分页信息和条件查询用户视图对象列表
List < YonghuView > selectListView ( Pagination page , @Param ( "ew" ) Wrapper < YonghuEntity > wrapper ) ;
// 根据条件查询单个用户视图对象
YonghuView selectView ( @Param ( "ew" ) Wrapper < YonghuEntity > wrapper ) ;
// 根据参数和条件查询值映射列表
List < Map < String , Object > > selectValue ( @Param ( "params" ) Map < String , Object > params , @Param ( "ew" ) Wrapper < YonghuEntity > wrapper ) ;
// 根据参数和条件查询时间统计值映射列表
List < Map < String , Object > > selectTimeStatValue ( @Param ( "params" ) Map < String , Object > params , @Param ( "ew" ) Wrapper < YonghuEntity > wrapper ) ;
// 根据参数和条件分组查询映射列表
List < Map < String , Object > > selectGroup ( @Param ( "params" ) Map < String , Object > params , @Param ( "ew" ) Wrapper < YonghuEntity > wrapper ) ;
}