package com.gk.hotwork.Service.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.gk.hotwork.Domain.WorkCertInfo; import com.gk.hotwork.Mapper.WorkCertInfoMapper; import com.gk.hotwork.Service.WorkCertService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service("WorkCertService") public class WorkCertServiceImpl extends ServiceImpl implements WorkCertService { @Autowired WorkCertInfoMapper workCertInfoMapper; @Override public List selectByMobile(String mobile) { return workCertInfoMapper.selectByMobile(mobile); } }