package com.gkhy.exam.system.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.gkhy.exam.common.api.CommonResult; import com.gkhy.exam.system.domain.QualityTarget; import com.gkhy.exam.system.mapper.QualityTargetMapper; import com.gkhy.exam.system.service.QualityTargetService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class QualityTargetServiceImpl extends ServiceImpl implements QualityTargetService { @Autowired private QualityTargetMapper qualityTargetMapper; @Override public CommonResult selectTargetList(Integer qualityId) { return CommonResult.success(qualityTargetMapper.selectByQualityId(qualityId)); } }