package kr.wisestone.owl.web.form;
|
|
import kr.wisestone.owl.util.ConvertUtil;
|
|
import java.util.Map;
|
|
/**
|
* Created by jeong on 2017-12-30.
|
*/
|
public class UserForm {
|
private Long id;
|
private String name;
|
private String account;
|
private String password;
|
private String currentPassword;
|
private String passwordConfirm;
|
private String profile;
|
private String status;
|
private String phone;
|
private Long levelId;
|
private String departmentId;
|
private String workspaceName;
|
private String socialType;
|
private Long lastWorkspaceId;
|
private Long lastProjectId;
|
private Long lastIssueTypeId;
|
private String reservationNotifyTime;
|
private String language;
|
private String licensekey;
|
|
public UserForm(){}
|
|
public static UserForm make(Map<String, Object> params) {
|
return ConvertUtil.convertMapToClass(params, UserForm.class);
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
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 getCurrentPassword() {
|
return currentPassword;
|
}
|
|
public void setCurrentPassword(String currentPassword) {
|
this.currentPassword = currentPassword;
|
}
|
|
public String getProfile() {
|
return profile;
|
}
|
|
public void setProfile(String profile) {
|
this.profile = profile;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public Long getLevelId() {
|
return levelId;
|
}
|
|
public void setLevelId(Long levelId) {
|
this.levelId = levelId;
|
}
|
|
public String getDepartmentId() {
|
return departmentId;
|
}
|
|
public void setDepartmentId(String departmentId) {
|
this.departmentId = departmentId;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getWorkspaceName() {
|
return workspaceName;
|
}
|
|
public void setWorkspaceName(String workspaceName) {
|
this.workspaceName = workspaceName;
|
}
|
|
public Long getLastWorkspaceId() {
|
return lastWorkspaceId;
|
}
|
|
public Long getLastProjectId() {
|
return this.lastProjectId;
|
}
|
|
public void setLastProjectId(Long id) {
|
this.lastProjectId = id;
|
}
|
|
|
public void setLastWorkspaceId(Long lastWorkspaceId) {
|
this.lastWorkspaceId = lastWorkspaceId;
|
}
|
|
public String getSocialType() {
|
return socialType;
|
}
|
|
public void setSocialType(String socialType) {
|
this.socialType = socialType;
|
}
|
|
public String getReservationNotifyTime() {
|
return reservationNotifyTime;
|
}
|
|
public void setReservationNotifyTime(String reservationNotifyTime) {
|
this.reservationNotifyTime = reservationNotifyTime;
|
}
|
|
public String getPasswordConfirm() {
|
return passwordConfirm;
|
}
|
|
public void setPasswordConfirm(String passwordConfirm) {
|
this.passwordConfirm = passwordConfirm;
|
}
|
|
public String getLanguage() {
|
return language;
|
}
|
|
public void setLanguage(String language) {
|
this.language = language;
|
}
|
|
public String getLicensekey() {
|
return licensekey;
|
}
|
|
public void setLicensekey(String licensekey) {
|
this.licensekey = licensekey;
|
}
|
|
public Long getLastIssueTypeId() {
|
return lastIssueTypeId;
|
}
|
|
public void setLastIssueTypeId(Long lastIssueTypeId) {
|
this.lastIssueTypeId = lastIssueTypeId;
|
}
|
}
|