package cn.stylefeng.guns.modular.sc.kanbanConf.mapper;
|
|
import cn.stylefeng.guns.modular.sc.kanbanConf.entity.KanbanConf;
|
import cn.stylefeng.guns.modular.sc.kanbanConf.model.params.KanbanConfParam;
|
import cn.stylefeng.guns.modular.sc.kanbanConf.model.result.KanbanConfResult;
|
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 cl
|
* @since 2022-10-31
|
*/
|
public interface KanbanConfMapper extends BaseMapper<KanbanConf> {
|
|
/**
|
* 获取列表
|
*
|
* @author cl
|
* @Date 2022-10-31
|
*/
|
List<KanbanConfResult> customList(@Param("paramCondition") KanbanConfParam paramCondition);
|
|
/**
|
* 获取map列表
|
*
|
* @author cl
|
* @Date 2022-10-31
|
*/
|
List<Map<String, Object>> customMapList(@Param("paramCondition") KanbanConfParam paramCondition);
|
|
/**
|
* 获取分页实体列表
|
*
|
* @author cl
|
* @Date 2022-10-31
|
*/
|
Page<KanbanConfResult> customPageList(@Param("page") Page page, @Param("paramCondition") KanbanConfParam paramCondition);
|
|
/**
|
* 获取分页map列表
|
*
|
* @author cl
|
* @Date 2022-10-31
|
*/
|
Page<Map<String, Object>> customPageMapList(@Param("page") Page page, @Param("paramCondition") KanbanConfParam paramCondition);
|
|
}
|