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.
19 lines
418 B
19 lines
418 B
package com.teaching.backend.mapper.umsAdmin; |
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
import com.teaching.backend.model.entity.umsAdmin.UmsStudent; |
|
|
|
/** |
|
* <p> |
|
* Mapper 接口 |
|
* </p> |
|
* |
|
* @author zjh |
|
* @since 2024-06-12 |
|
*/ |
|
public interface UmsStudentMapper extends BaseMapper<UmsStudent> { |
|
boolean updateStudentInfo(UmsStudent umsStudent); |
|
|
|
UmsStudent selectByUserId(Integer userId); |
|
|
|
}
|
|
|