| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 检测标准主表 Mapper 接口 |
| | |
| | | public interface QualityTestStandardMapper extends BaseMapper<QualityTestStandard> { |
| | | |
| | | IPage<QualityTestStandard> qualityTestStandardListPage(Page page, @Param("c") QualityTestStandard qualityTestStandard); |
| | | |
| | | List<QualityTestStandard> getQualityTestStandardByProductId(@Param("productId") Long productId, @Param("inspectType") Integer inspectType, @Param("process") String process); |
| | | |
| | | |
| | | } |