| | |
| | | package com.mindskip.xzs.viewmodel.student.user; |
| | | |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | |
| | | public class UserUpdateVM { |
| | | |
| | | @NotBlank |
| | | private String realName; |
| | | |
| | | private String password; |
| | | |
| | | private String age; |
| | | |
| | |
| | | |
| | | private String phone; |
| | | |
| | | @NotNull |
| | | private Integer userLevel; |
| | | |
| | | public String getRealName() { |
| | |
| | | public void setUserLevel(Integer userLevel) { |
| | | this.userLevel = userLevel; |
| | | } |
| | | |
| | | public String getPassword() { |
| | | return password; |
| | | } |
| | | |
| | | public void setPassword(String password) { |
| | | this.password = password; |
| | | } |
| | | } |