liding
2025-04-30 fbde0b947b4641081b558302ea77d88c902c4cd1
inspect-server/src/main/java/com/ruoyi/inspect/mapper/ReliabilityPlanProductItemMapper.java
@@ -1,7 +1,7 @@
package com.ruoyi.inspect.mapper;
import com.ruoyi.framework.mybatis_config.MyBaseMapper;
import com.ruoyi.inspect.pojo.ReliabilityPlanProductItem;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -15,13 +15,13 @@
 * @author ld
 * @since 2025-04-01 05:12:38
 */
public interface ReliabilityPlanProductItemMapper extends BaseMapper<ReliabilityPlanProductItem> {
public interface ReliabilityPlanProductItemMapper extends MyBaseMapper<ReliabilityPlanProductItem> {
    List<Map<String, Object>> itemList(@Param("planId") Integer rePlanId);
    List<Map<String, Object>> itemList(@Param("planId") Long rePlanId);
    List<Map<String, Object>> codeList(@Param("planId") Integer rePlanId);
    List<Map<String, Object>> codeList(@Param("planId") Long rePlanId);
    List<Map<String, Object>> materialItem(@Param("planId") Integer rePlanId);
    List<Map<String, Object>> materialItem(@Param("planId") Long rePlanId);
    List<Map<String, Object>> materialCodeList(@Param("planId") Integer rePlanId);
    List<Map<String, Object>> materialCodeList(@Param("planId") Long rePlanId);
}