parent
3bbaabd871
commit
a9a9c3c0fe
16 changed files with 114 additions and 61 deletions
@ -1,15 +1,20 @@ |
||||
package com.msdw.tms.dao; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.msdw.tms.entity.ExperimentalTeachingEntity; |
||||
import com.msdw.tms.entity.UserEntity; |
||||
import com.msdw.tms.entity.vo.UserEntityVo; |
||||
import com.msdw.tms.entity.vo.UserProsonalEntityVo; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Mapper |
||||
public interface UserDao extends BaseMapper<UserEntity> { |
||||
|
||||
UserEntityVo getByUserId(UserEntity userEntity); |
||||
|
||||
void updateUserPersonal(UserEntityVo vo); |
||||
|
||||
List<UserProsonalEntityVo> queryPersonalFile(Integer userid,List<Integer> personalFileId); |
||||
List<UserProsonalEntityVo> queryUserInfo(Integer userid); |
||||
} |
||||
|
Loading…
Reference in new issue