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.SupplierSureQuality; import com.gkhy.exam.system.mapper.SupplierSureQualityMapper; import com.gkhy.exam.system.service.SupplierSureQualityService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class SupplierSureQualityServiceImpl extends ServiceImpl implements SupplierSureQualityService { @Autowired private SupplierSureQualityMapper supplierSureQualityMapper; @Override public CommonResult selectQualityList(Integer supplierSureId) { return CommonResult.success(supplierSureQualityMapper.selectQualityList(supplierSureId)); } @Override public CommonResult updateQuality(SupplierSureQuality quality) { supplierSureQualityMapper.updateById(quality); return CommonResult.success(); } }