package com.sincere.ribbon.model; public class Login { private String account; private String password; private String userType; public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getUserType() { return userType; } public void setUserType(String userType) { this.userType = userType; } @Override public String toString() { return "Login{" + "account='" + account + '\'' + ", password='" + password + '\'' + ", userType='" + userType + '\'' + '}'; } }