package cn.stylefeng.guns.modular.bs.customInfo.mapper;
|
|
import cn.stylefeng.guns.modular.bs.customInfo.entity.CustomInfo;
|
import cn.stylefeng.guns.modular.bs.customInfo.model.params.CustomInfoParam;
|
import cn.stylefeng.guns.modular.bs.customInfo.model.result.CustomInfoResult;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 客户信息 Mapper 接口
|
* </p>
|
*
|
* @author ruimin
|
* @since 2023-03-27
|
*/
|
public interface CustomInfoMapper extends BaseMapper<CustomInfo> {
|
|
/**
|
* 获取列表
|
*
|
* @author ruimin
|
* @Date 2023-03-27
|
*/
|
List<CustomInfoResult> customList(@Param("paramCondition") CustomInfoParam paramCondition);
|
|
/**
|
* 获取map列表
|
*
|
* @author ruimin
|
* @Date 2023-03-27
|
*/
|
List<Map<String, Object>> customMapList(@Param("paramCondition") CustomInfoParam paramCondition);
|
|
/**
|
* 获取分页实体列表
|
*
|
* @author ruimin
|
* @Date 2023-03-27
|
*/
|
Page<CustomInfoResult> customPageList(@Param("page") Page page, @Param("paramCondition") CustomInfoParam paramCondition);
|
|
/**
|
* 获取分页map列表
|
*
|
* @author ruimin
|
* @Date 2023-03-27
|
*/
|
Page<Map<String, Object>> customPageMapList(@Param("page") Page page, @Param("paramCondition") CustomInfoParam paramCondition);
|
|
}
|