| | |
| | | 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; |
| | |
| | | * @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); |
| | | } |