package cn.com.lzt.sign.entity; import java.io.Serializable; import java.util.Date; import javax.persistence.*; import org.hibernate.annotations.GenericGenerator; @Entity @Table(name = "t_b_office", schema = "") public class TBOfficeEntity implements Serializable { private String id; private String officeDept; private String officeDeptId; private String officeTravelUser; private String officeDriveUser; private String officeAddress; private Date officeStartDate; private Date officeEndDate; private String officeStartDateStr; private String officeEndDateStr; private String officeDay; private String officeCont; private String officeApprove; private String officeApproveId; private String officeFileUrl; private String officeFilename; private String officeSpareOne; private String officeSpareTwo; private String createName; private String createBy; private Date createDate; private String updateName; private String updateBy; private Date updateDate; private String requestId; private Date officeDate; @Transient public String getOfficeStartDateStr() { return officeStartDateStr; } public void setOfficeStartDateStr(String officeStartDateStr) { this.officeStartDateStr = officeStartDateStr; } @Transient public String getOfficeEndDateStr() { return officeEndDateStr; } public void setOfficeEndDateStr(String officeEndDateStr) { this.officeEndDateStr = officeEndDateStr; } @Column(name = "office_date", nullable = true, length = 255) public Date getOfficeDate() { return officeDate; } public void setOfficeDate(Date officeDate) { this.officeDate = officeDate; } @Column(name = "request_id", nullable = true, length = 255) public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Id @GeneratedValue(generator = "paymentableGenerator") @GenericGenerator(name = "paymentableGenerator", strategy = "uuid") @Column(name = "id", nullable = true, length = 255) public String getId() { /* 120 */ return this.id; } public void setId(String id) { /* 124 */ this.id = id; } @Column(name = "office_dept", nullable = true, length = 255) public String getOfficeDept() { /* 131 */ return this.officeDept; } public void setOfficeDept(String officeDept) { /* 135 */ this.officeDept = officeDept; } @Column(name = "office_dept_id", nullable = true, length = 255) public String getOfficeDeptId() { /* 142 */ return this.officeDeptId; } public void setOfficeDeptId(String officeDeptId) { /* 146 */ this.officeDeptId = officeDeptId; } @Column(name = "office_travel_user", nullable = true, length = 255) public String getOfficeTravelUser() { /* 153 */ return this.officeTravelUser; } public void setOfficeTravelUser(String officeTravelUser) { /* 157 */ this.officeTravelUser = officeTravelUser; } @Column(name = "office_drive_user", nullable = true, length = 255) public String getOfficeDriveUser() { /* 164 */ return this.officeDriveUser; } public void setOfficeDriveUser(String officeDriveUser) { /* 168 */ this.officeDriveUser = officeDriveUser; } @Column(name = "office_address", nullable = true, length = 255) public String getOfficeAddress() { /* 175 */ return this.officeAddress; } public void setOfficeAddress(String officeAddress) { /* 179 */ this.officeAddress = officeAddress; } @Column(name = "office_start_date", nullable = true, length = 255) public Date getOfficeStartDate() { /* 186 */ return this.officeStartDate; } public void setOfficeStartDate(Date officeStartDate) { /* 190 */ this.officeStartDate = officeStartDate; } @Column(name = "office_end_date", nullable = true, length = 255) public Date getOfficeEndDate() { /* 197 */ return this.officeEndDate; } public void setOfficeEndDate(Date officeEndDate) { /* 201 */ this.officeEndDate = officeEndDate; } @Column(name = "office_day", nullable = true, length = 255) public String getOfficeDay() { /* 208 */ return this.officeDay; } public void setOfficeDay(String officeDay) { /* 212 */ this.officeDay = officeDay; } @Column(name = "office_cont", nullable = true, length = 255) public String getOfficeCont() { /* 219 */ return this.officeCont; } public void setOfficeCont(String officeCont) { /* 223 */ this.officeCont = officeCont; } @Column(name = "office_approve", nullable = true, length = 255) public String getOfficeApprove() { /* 230 */ return this.officeApprove; } public void setOfficeApprove(String officeApprove) { /* 234 */ this.officeApprove = officeApprove; } @Column(name = "office_approve_id", nullable = true, length = 255) public String getOfficeApproveId() { /* 241 */ return this.officeApproveId; } public void setOfficeApproveId(String officeApproveId) { /* 245 */ this.officeApproveId = officeApproveId; } @Column(name = "office_file_url", nullable = true, length = 255) public String getOfficeFileUrl() { /* 252 */ return this.officeFileUrl; } public void setOfficeFileUrl(String officeFileUrl) { /* 256 */ this.officeFileUrl = officeFileUrl; } @Column(name = "office_filename", nullable = true, length = 255) public String getOfficeFilename() { /* 263 */ return this.officeFilename; } public void setOfficeFilename(String officeFilename) { /* 267 */ this.officeFilename = officeFilename; } @Column(name = "office_spare_one", nullable = true, length = 255) public String getOfficeSpareOne() { /* 274 */ return this.officeSpareOne; } public void setOfficeSpareOne(String officeSpareOne) { /* 278 */ this.officeSpareOne = officeSpareOne; } @Column(name = "office_spare_two", nullable = true, length = 255) public String getOfficeSpareTwo() { /* 285 */ return this.officeSpareTwo; } public void setOfficeSpareTwo(String officeSpareTwo) { /* 289 */ this.officeSpareTwo = officeSpareTwo; } @Column(name = "create_name", nullable = true, length = 255) public String getCreateName() { /* 296 */ return this.createName; } public void setCreateName(String createName) { /* 300 */ this.createName = createName; } @Column(name = "create_by", nullable = true, length = 255) public String getCreateBy() { return this.createBy; } public void setCreateBy(String createBy) { /* 311 */ this.createBy = createBy; } @Column(name = "create_date", nullable = true, length = 255) public Date getCreateDate() { /* 318 */ return this.createDate; } public void setCreateDate(Date createDate) { /* 322 */ this.createDate = createDate; } @Column(name = "update_name", nullable = true, length = 255) public String getUpdateName() { /* 329 */ return this.updateName; } public void setUpdateName(String updateName) { /* 333 */ this.updateName = updateName; } @Column(name = "update_by", nullable = true, length = 255) public String getUpdateBy() { /* 340 */ return this.updateBy; } public void setUpdateBy(String updateBy) { /* 344 */ this.updateBy = updateBy; } @Column(name = "update_date", nullable = true, length = 255) public Date getUpdateDate() { /* 351 */ return this.updateDate; } public void setUpdateDate(Date updateDate) { /* 355 */ this.updateDate = updateDate; } }