chenrui
2025-04-07 165050015b3bc1a8a41eed7851d29e2e8d3db187
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
package com.ruoyi.inspect.mapper;
 
import com.ruoyi.inspect.pojo.ReliabilityPlanProductItem;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 可靠性计划产品子项 Mapper 接口
 * </p>
 *
 * @author ld
 * @since 2025-04-01 05:12:38
 */
public interface ReliabilityPlanProductItemMapper extends BaseMapper<ReliabilityPlanProductItem> {
 
    List<Map<String, Object>> itemList(@Param("planId") Integer rePlanId);
 
    List<Map<String, Object>> codeList(@Param("planId") Integer rePlanId);
 
    List<Map<String, Object>> materialItem(@Param("planId") Integer rePlanId);
 
    List<Map<String, Object>> materialCodeList(@Param("planId") Integer rePlanId);
}