图谱-后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
749 B

package com.teaching.backend.mapper.umsAdmin;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.teaching.backend.model.entity.courses.StudentCourses;
import com.teaching.backend.model.entity.umsAdmin.UmsRole;
import com.teaching.backend.model.entity.umsAdmin.UmsTeacher;
import com.teaching.backend.model.entity.umsAdmin.UmsUser;
import com.teaching.backend.model.vo.umsAdmin.UmsStudentVO;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface UmsUserMapper extends BaseMapper<UmsUser> {
boolean updateUserInformation(UmsUser umsUser);
UmsRole getByIdRoleInfo(String id);
UmsTeacher getByIdTeacher(String id);
UmsStudentVO getByIdStudent(String id);
String getbyIdRoleId(String userId);
}