图谱-后端
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
684 B

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