package com.kwan.springbootkwan.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.kwan.springbootkwan.entity.Person; import org.apache.ibatis.annotations.Mapper; @Mapper public interface PersonMapper extends BaseMapper<Person> { }