yangys
2024-03-28 23a939ed820ee32f9a4309f9c81b7bab5a566f30
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
package com.qianwen.smartman.modules.cps.mapper;
 
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.qianwen.smartman.modules.cps.dto.ProductCountDTO;
import com.qianwen.smartman.modules.cps.entity.Product;
import com.qianwen.smartman.modules.cps.excel.ProductExcel;
import com.qianwen.smartman.modules.cps.vo.ProductEasyVO;
import com.qianwen.smartman.modules.cps.vo.ProductSearchVO;
import com.qianwen.smartman.modules.cps.vo.ProductSelectVO;
import com.qianwen.smartman.modules.cps.vo.ProductVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/mapper/ProductMapper.class */
public interface ProductMapper extends BaseMapper<Product> {
    List<ProductVO> selectListByIds(@Param("ids") List<Long> ids, @Param("orderBy") String orderBy);
 
    List<ProductVO> selectListByParam(@Param("param") ProductSelectVO param);
 
    List<Product> selectIdById(@Param("param") ProductSelectVO param);
 
    Integer getParentStatusCount(List<String> ids);
 
    Product getParentDetail(Long id);
 
    List<Product> notBandProduct(@Param("craftId") Long craftId);
 
    List<ProductExcel> exportProduct(@Param("ew") Wrapper<ProductSearchVO> wrapper, @Param("fieldSql") String fieldSql);
 
    void removeBindCraft(@Param("ids") List<Long> ids);
 
    IPage<ProductEasyVO> lazyTree(IPage<ProductEasyVO> page, @Param("ew") Wrapper<Product> wrapper, @Param("fieldSql") String fieldSql);
 
    Integer lazyTreeCount(@Param("ew") Wrapper<Product> wrapper, @Param("fieldSql") String fieldSql);
 
    List<ProductCountDTO> hasChild(@Param("ids") List<Long> ids, @Param("status") Integer status);
}