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.
21 lines
642 B
21 lines
642 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;
|
||
12 months ago
|
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
|
||
12 months ago
|
public interface UmsUserMapper extends BaseMapper<UmsUser> {
|
||
12 months ago
|
|
||
12 months ago
|
boolean updateUserInformation(UmsUser umsUser);
|
||
12 months ago
|
|
||
|
UmsRole getByIdRoleInfo(String id);
|
||
|
|
||
|
UmsTeacher getByIdTeacher(String id);
|
||
|
|
||
|
UmsStudentVO getByIdStudent(String id);
|
||
1 year ago
|
}
|