commit
db0af09c4e
16 changed files with 169 additions and 64 deletions
@ -1,13 +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<UserProsonalEntityVo> queryUserInfo(Integer userid); |
||||
} |
||||
|
@ -0,0 +1,12 @@ |
||||
package com.msdw.tms.entity.vo; |
||||
|
||||
import com.msdw.tms.entity.UserEntity; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
@Data |
||||
public class UserProsonalEntityVo { |
||||
private UserEntity userEntity; |
||||
private List<UserEntityVo> userEntityVoList; |
||||
|
||||
} |
Loading…
Reference in new issue