| | |
| | | |
| | | private String imagePath; |
| | | |
| | | private String deptIds; |
| | | |
| | | private String deptNames; |
| | | |
| | | public static UserResponseVM from(User user) { |
| | | UserResponseVM vm = modelMapper.map(user, UserResponseVM.class); |
| | | vm.setBirthDay(DateTimeUtil.dateFormat(user.getBirthDay())); |
| | |
| | | public void setImagePath(String imagePath) { |
| | | this.imagePath = imagePath; |
| | | } |
| | | |
| | | public String getDeptIds() { |
| | | return deptIds; |
| | | } |
| | | |
| | | public void setDeptIds(String deptIds) { |
| | | this.deptIds = deptIds; |
| | | } |
| | | |
| | | public String getDeptNames() { |
| | | return deptNames; |
| | | } |
| | | |
| | | public void setDeptNames(String deptNames) { |
| | | this.deptNames = deptNames; |
| | | } |
| | | } |