| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.project.domain.ServiceExternalperson; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * 外围单位人员Mapper接口 |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | * @date 2021-11-24 |
| | | */ |
| | | public interface ServiceExternalpersonMapper extends BaseMapper<ServiceExternalperson> |
| | | { |
| | | @Mapper |
| | | public interface ServiceExternalpersonMapper extends BaseMapper<ServiceExternalperson> { |
| | | /** |
| | | * 查询外围单位人员列表 |
| | | * |
| | |
| | | List<ServiceExternalperson> getAllpeople(String usertype); |
| | | |
| | | ServiceExternalperson getInfoByUserNo(String userno); |
| | | |
| | | List<ServiceExternalperson> getInfoByIDCardNo(String idcardno); |
| | | } |