147 lines
2.2 KiB
Plaintext
147 lines
2.2 KiB
Plaintext
|
|
package com.nationalelectric.greenH5.po;
|
||
|
|
|
||
|
|
import org.hibernate.validator.constraints.NotBlank;
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* TIscUserLogin
|
||
|
|
* @author dell
|
||
|
|
*/
|
||
|
|
public class TIscUserLogin implements java.io.Serializable {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 序列化
|
||
|
|
*/
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
*主键ID
|
||
|
|
*/
|
||
|
|
|
||
|
|
private String id;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*用户名
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String username;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*密码
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String _possword;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*host
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String hostname;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*创建者
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String creator;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*修改者
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String modifier;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*创建时间
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private Date gmtCreated;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*修改时间
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private Date gmtModified;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*是否删除YN默认N
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String isDeleted;
|
||
|
|
|
||
|
|
public String getId() {
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId(String id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getUsername() {
|
||
|
|
return username;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUsername(String username) {
|
||
|
|
this.username = username;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String get_possword() {
|
||
|
|
return _possword;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void set_possword(String _possword) {
|
||
|
|
this._possword = _possword;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getHostname() {
|
||
|
|
return hostname;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setHostname(String hostname) {
|
||
|
|
this.hostname = hostname;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCreator() {
|
||
|
|
return creator;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCreator(String creator) {
|
||
|
|
this.creator = creator;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getModifier() {
|
||
|
|
return modifier;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setModifier(String modifier) {
|
||
|
|
this.modifier = modifier;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getGmtCreated() {
|
||
|
|
return gmtCreated;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGmtCreated(Date gmtCreated) {
|
||
|
|
this.gmtCreated = gmtCreated;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getGmtModified() {
|
||
|
|
return gmtModified;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGmtModified(Date gmtModified) {
|
||
|
|
this.gmtModified = gmtModified;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getIsDeleted() {
|
||
|
|
return isDeleted;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIsDeleted(String isDeleted) {
|
||
|
|
this.isDeleted = isDeleted;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|