| package com.genersoft.iot.vmp.storager.dao.dto; | 
|   | 
| public class User { | 
|   | 
|     private int id; | 
|     private String username; | 
|     private String password; | 
|     private String createTime; | 
|     private String updateTime; | 
|     private Role role; | 
|   | 
|     public int getId() { | 
|         return id; | 
|     } | 
|   | 
|     public void setId(int id) { | 
|         this.id = id; | 
|     } | 
|   | 
|     public String getUsername() { | 
|         return username; | 
|     } | 
|   | 
|     public void setUsername(String username) { | 
|         this.username = username; | 
|     } | 
|   | 
|     public String getPassword() { | 
|         return password; | 
|     } | 
|   | 
|     public void setPassword(String password) { | 
|         this.password = password; | 
|     } | 
|   | 
|     public String getCreateTime() { | 
|         return createTime; | 
|     } | 
|   | 
|     public void setCreateTime(String createTime) { | 
|         this.createTime = createTime; | 
|     } | 
|   | 
|     public String getUpdateTime() { | 
|         return updateTime; | 
|     } | 
|   | 
|     public void setUpdateTime(String updateTime) { | 
|         this.updateTime = updateTime; | 
|     } | 
|   | 
|     public Role getRole() { | 
|         return role; | 
|     } | 
|   | 
|     public void setRole(Role role) { | 
|         this.role = role; | 
|     } | 
| } |