package com.zhongzhi.service; import com.zhongzhi.dto.student.LoginDTO; import com.zhongzhi.dto.student.RegisterDTO; import com.zhongzhi.model.StudentDO; import com.baomidou.mybatisplus.extension.service.IService; import com.zhongzhi.vo.student.StudentInfoVO; /** * <p> * 服务类 * </p> * * @author DengMin * @since 2021-04-28 */ public interface StudentService extends IService<StudentDO> { StudentInfoVO register(RegisterDTO registerDTO); StudentInfoVO login(LoginDTO loginDTO); void updateStudentInfo(StudentDO studentDO); }