package com.pz.system.mapper; import com.pz.system.domain.Doctor; import com.pz.system.domain.vo.DoctorVo; import com.pz.common.core.mapper.BaseMapperPlus; /** * 医生Mapper接口 * * @author ruoyi * @date 2023-09-07 */ public interface DoctorMapper extends BaseMapperPlus<DoctorMapper, Doctor, DoctorVo> { }