175 lines
2.7 KiB
Plaintext
175 lines
2.7 KiB
Plaintext
package com.nationalelectric.greenH5.po;
|
|
|
|
import org.hibernate.validator.constraints.NotBlank;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* GreenOfficeStationInfo
|
|
* @author dell
|
|
*/
|
|
public class GreenOfficeStationInfo implements java.io.Serializable {
|
|
|
|
/**
|
|
* 序列化
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
*主键ID
|
|
*/
|
|
|
|
private Long id;
|
|
|
|
/**
|
|
*关联办公房id
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private Long officeHourseId;
|
|
|
|
/**
|
|
*关联办公房名称
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private Long officeHourseName;
|
|
|
|
/**
|
|
*办公位编号
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String stationNo;
|
|
|
|
/**
|
|
*是否使用中 0是 1否
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String isUsing;
|
|
|
|
/**
|
|
*用户id
|
|
*/
|
|
|
|
private String userId;
|
|
|
|
/**
|
|
*创建者
|
|
*/
|
|
@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 Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getOfficeHourseId() {
|
|
return officeHourseId;
|
|
}
|
|
|
|
public void setOfficeHourseId(Long officeHourseId) {
|
|
this.officeHourseId = officeHourseId;
|
|
}
|
|
|
|
public Long getOfficeHourseName() {
|
|
return officeHourseName;
|
|
}
|
|
|
|
public void setOfficeHourseName(Long officeHourseName) {
|
|
this.officeHourseName = officeHourseName;
|
|
}
|
|
|
|
public String getStationNo() {
|
|
return stationNo;
|
|
}
|
|
|
|
public void setStationNo(String stationNo) {
|
|
this.stationNo = stationNo;
|
|
}
|
|
|
|
public String getIsUsing() {
|
|
return isUsing;
|
|
}
|
|
|
|
public void setIsUsing(String isUsing) {
|
|
this.isUsing = isUsing;
|
|
}
|
|
|
|
public String getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(String userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
}
|