懒羊羊
2024-01-10 a556270e96bc6e7fa4202c466d57cc75f778c614
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package cn.stylefeng.guns.modular.bs.bomInfo.mapper;
 
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.modular.bs.bomInfo.entity.BomInfo;
import cn.stylefeng.guns.modular.bs.bomInfo.model.params.BomInfoParam;
import cn.stylefeng.guns.modular.bs.bomInfo.model.result.BomInfoResult;
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>
 * bom信息 Mapper 接口
 * </p>
 *
 * @author 
 * @since 2022-10-24
 */
public interface BomInfoMapper extends BaseMapper<BomInfo> {
 
    /**
     * 获取列表
     *
     * @author 
     * @Date 2022-10-24
     */
    List<BomInfoResult> customList(@Param("paramCondition") BomInfoParam paramCondition);
 
    /**
     * 获取map列表
     *
     * @author 
     * @Date 2022-10-24
     */
    List<Map<String, Object>> customMapList(@Param("paramCondition") BomInfoParam paramCondition);
 
    /**
     * 获取分页实体列表
     *
     * @author 
     * @Date 2022-10-24
     */
    Page<BomInfoResult> customPageList(@Param("page") Page page, @Param("paramCondition") BomInfoParam paramCondition);
 
    /**
     * 获取分页map列表
     *
     * @author 
     * @Date 2022-10-24
     */
    Page<Map<String, Object>> customPageMapList(@Param("page") Page page, @Param("paramCondition") BomInfoParam paramCondition);
 
    Page<Map<String, Object>> kbListTable(@Param("page") Page page, @Param("paramCondition") BomInfoParam paramCondition);
}