package cn.timer.api.dao.insure; import cn.timer.api.bean.insure.InsureApplicant; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.springframework.stereotype.Repository; /** * 投保人 * * @author wgd * @email 862422848@qq.com * @date 2022-03-07 17:02:46 */ @Repository public interface InsureApplicantMapper extends BaseMapper<InsureApplicant> { }