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.JijianxinxiEntity ;
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.JijianxinxiVO ;
import com.entity.view.JijianxinxiView ;
/**
* 寄件信息
* 数据访问接口
* @author
* @email
* @date 2023-02-17 16:59:28
*/
public interface JijianxinxiDao extends BaseMapper < JijianxinxiEntity > {
/**
* 查询寄件信息VO列表
* 返回值对象(VO)列表,通常用于前端展示,包含部分字段或计算字段
* @param wrapper 查询条件包装器, 用于构建WHERE条件
* @return 寄件信息VO列表
*/
List < JijianxinxiVO > selectListVO ( @Param ( "ew" ) Wrapper < JijianxinxiEntity > wrapper ) ;
/**
* 查询单个寄件信息VO
* 返回单个值对象(VO),用于详情展示
* @param wrapper 查询条件包装器
* @return 单个寄件信息VO对象
*/
JijianxinxiVO selectVO ( @Param ( "ew" ) Wrapper < JijianxinxiEntity > wrapper ) ;
/**
* 查询寄件信息视图列表
* 返回视图对象列表,通常包含关联表的数据
* @param wrapper 查询条件包装器
* @return 寄件信息视图列表
*/
List < JijianxinxiView > selectListView ( @Param ( "ew" ) Wrapper < JijianxinxiEntity > wrapper ) ;
/**
* 分页查询寄件信息视图列表
* 支持分页的视图查询,用于列表分页展示
* @param page 分页对象,包含页码、每页大小等信息
* @param wrapper 查询条件包装器
* @return 分页后的寄件信息视图列表
*/
List < JijianxinxiView > selectListView ( Pagination page , @Param ( "ew" ) Wrapper < JijianxinxiEntity > wrapper ) ;
/**
* 查询单个寄件信息视图
* 返回单个视图对象,通常用于详情页展示关联数据
* @param wrapper 查询条件包装器
* @return 单个寄件信息视图对象
*/
JijianxinxiView selectView ( @Param ( "ew" ) Wrapper < JijianxinxiEntity > wrapper ) ;
}