231 lines
3.7 KiB
Plaintext
231 lines
3.7 KiB
Plaintext
package com.nationalelectric.greenH5.po;
|
|
|
|
import org.hibernate.validator.constraints.NotBlank;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* GreenOfficeHourseResource
|
|
* @author dell
|
|
*/
|
|
public class GreenOfficeHourseResource implements java.io.Serializable {
|
|
|
|
/**
|
|
* 序列化
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
*主键ID
|
|
*/
|
|
|
|
private Long id;
|
|
|
|
/**
|
|
*用户ID
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String userId;
|
|
|
|
/**
|
|
*所属单位
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String belongCompany;
|
|
|
|
/**
|
|
*办公楼
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String officeStoried;
|
|
|
|
/**
|
|
*办公楼层
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String officeFloor;
|
|
|
|
/**
|
|
*房间编号
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String officeRoomNo;
|
|
|
|
/**
|
|
*使用部门id
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private Long useDeptId;
|
|
|
|
/**
|
|
*房间类型code 0办公间1会议室
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String roomType;
|
|
|
|
/**
|
|
*工位数量
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String stationCount;
|
|
|
|
/**
|
|
*使用工位数量
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String usingStationCount;
|
|
|
|
/**
|
|
*创建者
|
|
*/
|
|
@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 String getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(String userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
public String getBelongCompany() {
|
|
return belongCompany;
|
|
}
|
|
|
|
public void setBelongCompany(String belongCompany) {
|
|
this.belongCompany = belongCompany;
|
|
}
|
|
|
|
public String getOfficeStoried() {
|
|
return officeStoried;
|
|
}
|
|
|
|
public void setOfficeStoried(String officeStoried) {
|
|
this.officeStoried = officeStoried;
|
|
}
|
|
|
|
public String getOfficeFloor() {
|
|
return officeFloor;
|
|
}
|
|
|
|
public void setOfficeFloor(String officeFloor) {
|
|
this.officeFloor = officeFloor;
|
|
}
|
|
|
|
public String getOfficeRoomNo() {
|
|
return officeRoomNo;
|
|
}
|
|
|
|
public void setOfficeRoomNo(String officeRoomNo) {
|
|
this.officeRoomNo = officeRoomNo;
|
|
}
|
|
|
|
public Long getUseDeptId() {
|
|
return useDeptId;
|
|
}
|
|
|
|
public void setUseDeptId(Long useDeptId) {
|
|
this.useDeptId = useDeptId;
|
|
}
|
|
|
|
public String getRoomType() {
|
|
return roomType;
|
|
}
|
|
|
|
public void setRoomType(String roomType) {
|
|
this.roomType = roomType;
|
|
}
|
|
|
|
public String getStationCount() {
|
|
return stationCount;
|
|
}
|
|
|
|
public void setStationCount(String stationCount) {
|
|
this.stationCount = stationCount;
|
|
}
|
|
|
|
public String getUsingStationCount() {
|
|
return usingStationCount;
|
|
}
|
|
|
|
public void setUsingStationCount(String usingStationCount) {
|
|
this.usingStationCount = usingStationCount;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
}
|