package com.giit.www.entity; /** * Created by c0de8ug on 16-2-9. */ public class User { String userId; String password; String hash; String authority; public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getHash() { return hash; } public void setHash(String hash) { this.hash = hash; } public String getAuthority() { return authority; } public void setAuthority(String authority) { this.authority = authority; } }