| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.exam.system.domain.QualityTarget; |
| | | import com.gkhy.exam.system.domain.QualityTargetMess; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.mapstruct.Mapper; |
| | | |
| | |
| | | |
| | | List<QualityTarget> selectByQualityId(Integer qualityId); |
| | | |
| | | void deleteByQualityIds(@Param("collect") List<Integer> collect); |
| | | void deleteByQualityIds(@Param("qualityId") Integer qualityId); |
| | | |
| | | List<QualityTargetMess> selectBYQualityTargetId(@Param("id") Integer id); |
| | | |
| | | void insertQualityTargetMess(@Param("qualityTargetMesses") List<QualityTargetMess> qualityTargetMesses); |
| | | |
| | | void deletedByQualityTargetId(@Param("qualityTargetId") Integer id); |
| | | } |