com.github.freegeese.maven.plugin.autocode.demo.model.User Maven / Gradle / Ivy
package com.github.freegeese.maven.plugin.autocode.demo.model;
import java.util.Date;
import com.github.freegeese.maven.plugin.autocode.demo.base.BaseEntity;
public class User implements BaseEntity {
private Integer id;
private String username;
private String password;
private String email;
private String post;
private String telephone;
private String mobilephone;
private String department;
private Integer status;
private Date createdDate;
private Date lastModifiedDate;
public Integer getId() {
return id;
}
public void setId(Integer 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 getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPost() {
return post;
}
public void setPost(String post) {
this.post = post;
}
public String getTelephone() {
return telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
public String getMobilephone() {
return mobilephone;
}
public void setMobilephone(String mobilephone) {
this.mobilephone = mobilephone;
}
public String getDepartment() {
return department;
}
public void setDepartment(String department) {
this.department = department;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Date getCreatedDate() {
return createdDate;
}
public void setCreatedDate(Date createdDate) {
this.createdDate = createdDate;
}
public Date getLastModifiedDate() {
return lastModifiedDate;
}
public void setLastModifiedDate(Date lastModifiedDate) {
this.lastModifiedDate = lastModifiedDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy