| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- 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_beforehand", schema = "")
- public class TBBeforehandEntity
- implements Serializable
- {
- private String id;
- private String beforehandDept;
- private Date beforehandDate;
- private String beforehandDeptId;
- private String beforehandReceiveUser;
- private String beforehandPost;
- private String beforehandStation;
- private String beforehandAccompanyUser;
- private String beforehandReceiveDapt;
- private Integer beforehandNum;
- private Date beforehandStartDate;
- private Date beforehandEndDate;
- private String beforehandDay;
- private String beforehandReason;
- private String beforehandApprove;
- private String beforehandApproveId;
- private String beforehandFileUrl;
- private String beforehandFilename;
- private String beforehandSpareOne;
- private String beforehandSpareTwo;
- private String createName;
- private String createBy;
- private Date createDate;
- private String updateName;
- private String updateBy;
- private Date updateDate;
- private String requestId;
- private String beforehandStartDateStr;
- private String beforehandEndDateStr;
- @Transient
- public String getBeforehandStartDateStr() {
- return beforehandStartDateStr;
- }
- public void setBeforehandStartDateStr(String beforehandStartDateStr) {
- this.beforehandStartDateStr = beforehandStartDateStr;
- }
- @Transient
- public String getBeforehandEndDateStr() {
- return beforehandEndDateStr;
- }
- public void setBeforehandEndDateStr(String beforehandEndDateStr) {
- this.beforehandEndDateStr = beforehandEndDateStr;
- }
- @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() {
- /* 131 */ return this.id;
- }
- public void setId(String id) {
- /* 135 */ this.id = id;
- }
- @Column(name = "beforehand_dept", nullable = true, length = 255)
- public String getBeforehandDept() {
- /* 142 */ return this.beforehandDept;
- }
- public void setBeforehandDept(String beforehandDept) {
- /* 146 */ this.beforehandDept = beforehandDept;
- }
- @Column(name = "beforehand_dept_id", nullable = true, length = 255)
- public String getBeforehandDeptId() {
- /* 153 */ return this.beforehandDeptId;
- }
- public void setBeforehandDeptId(String beforehandDeptId) {
- /* 157 */ this.beforehandDeptId = beforehandDeptId;
- }
- @Column(name = "beforehand_receive_user", nullable = true, length = 255)
- public String getBeforehandReceiveUser() {
- /* 164 */ return this.beforehandReceiveUser;
- }
- public void setBeforehandReceiveUser(String beforehandReceiveUser) {
- /* 168 */ this.beforehandReceiveUser = beforehandReceiveUser;
- }
- @Column(name = "beforehand_post", nullable = true, length = 255)
- public String getBeforehandPost() {
- /* 175 */ return this.beforehandPost;
- }
- public void setBeforehandPost(String beforehandPost) {
- /* 179 */ this.beforehandPost = beforehandPost;
- }
- @Column(name = "beforehand_station", nullable = true, length = 255)
- public String getBeforehandStation() {
- /* 186 */ return this.beforehandStation;
- }
- public void setBeforehandStation(String beforehandStation) {
- /* 190 */ this.beforehandStation = beforehandStation;
- }
- @Column(name = "beforehand_accompany_user", nullable = true, length = 255)
- public String getBeforehandAccompanyUser() {
- /* 197 */ return this.beforehandAccompanyUser;
- }
- public void setBeforehandAccompanyUser(String beforehandAccompanyUser) {
- /* 201 */ this.beforehandAccompanyUser = beforehandAccompanyUser;
- }
- @Column(name = "beforehand_receive_dapt", nullable = true, length = 255)
- public String getBeforehandReceiveDapt() {
- /* 208 */ return this.beforehandReceiveDapt;
- }
- public void setBeforehandReceiveDapt(String beforehandReceiveDapt) {
- /* 212 */ this.beforehandReceiveDapt = beforehandReceiveDapt;
- }
- @Column(name = "beforehand_num", nullable = true, length = 255)
- public Integer getBeforehandNum() {
- /* 219 */ return this.beforehandNum;
- }
- public void setBeforehandNum(Integer beforehandNum) {
- /* 223 */ this.beforehandNum = beforehandNum;
- }
- @Column(name = "beforehand_start_date", nullable = true, length = 255)
- public Date getBeforehandStartDate() {
- /* 230 */ return this.beforehandStartDate;
- }
- public void setBeforehandStartDate(Date beforehandStartDate) {
- /* 234 */ this.beforehandStartDate = beforehandStartDate;
- }
- @Column(name = "beforehand_end_date", nullable = true, length = 255)
- public Date getBeforehandEndDate() {
- /* 241 */ return this.beforehandEndDate;
- }
- public void setBeforehandEndDate(Date beforehandEndDate) {
- /* 245 */ this.beforehandEndDate = beforehandEndDate;
- }
- @Column(name = "beforehand_day", nullable = true, length = 255)
- public String getBeforehandDay() {
- /* 252 */ return this.beforehandDay;
- }
- public void setBeforehandDay(String beforehandDay) {
- /* 256 */ this.beforehandDay = beforehandDay;
- }
- @Column(name = "beforehand_reason", nullable = true, length = 255)
- public String getBeforehandReason() {
- /* 263 */ return this.beforehandReason;
- }
- public void setBeforehandReason(String beforehandReason) {
- /* 267 */ this.beforehandReason = beforehandReason;
- }
- @Column(name = "beforehand_approve", nullable = true, length = 255)
- public String getBeforehandApprove() {
- /* 274 */ return this.beforehandApprove;
- }
- public void setBeforehandApprove(String beforehandApprove) {
- /* 278 */ this.beforehandApprove = beforehandApprove;
- }
- @Column(name = "beforehand_approve_id", nullable = true, length = 255)
- public String getBeforehandApproveId() {
- /* 285 */ return this.beforehandApproveId;
- }
- public void setBeforehandApproveId(String beforehandApproveId) {
- /* 289 */ this.beforehandApproveId = beforehandApproveId;
- }
- @Column(name = "beforehand_file_url", nullable = true, length = 255)
- public String getBeforehandFileUrl() {
- /* 296 */ return this.beforehandFileUrl;
- }
- public void setBeforehandFileUrl(String beforehandFileUrl) {
- /* 300 */ this.beforehandFileUrl = beforehandFileUrl;
- }
- @Column(name = "beforehand_filename", nullable = true, length = 255)
- public String getBeforehandFilename() {
- /* 307 */ return this.beforehandFilename;
- }
- public void setBeforehandFilename(String beforehandFilename) {
- /* 311 */ this.beforehandFilename = beforehandFilename;
- }
- @Column(name = "beforehand_spare_one", nullable = true, length = 255)
- public String getBeforehandSpareOne() {
- /* 318 */ return this.beforehandSpareOne;
- }
- public void setBeforehandSpareOne(String beforehandSpareOne) {
- /* 322 */ this.beforehandSpareOne = beforehandSpareOne;
- }
- @Column(name = "beforehand_spare_two", nullable = true, length = 255)
- public String getBeforehandSpareTwo() {
- /* 329 */ return this.beforehandSpareTwo;
- }
- public void setBeforehandSpareTwo(String beforehandSpareTwo) {
- /* 333 */ this.beforehandSpareTwo = beforehandSpareTwo;
- }
- @Column(name = "create_name", nullable = true, length = 255)
- public String getCreateName() {
- /* 340 */ return this.createName;
- }
- public void setCreateName(String createName) {
- /* 344 */ this.createName = createName;
- }
- @Column(name = "create_by", nullable = true, length = 255)
- public String getCreateBy() {
- /* 351 */ return this.createBy;
- }
- public void setCreateBy(String createBy) {
- /* 355 */ this.createBy = createBy;
- }
- @Column(name = "create_date", nullable = true, length = 255)
- public Date getCreateDate() {
- /* 362 */ return this.createDate;
- }
- public void setCreateDate(Date createDate) {
- /* 366 */ this.createDate = createDate;
- }
- @Column(name = "update_name", nullable = true, length = 255)
- public String getUpdateName() {
- /* 373 */ return this.updateName;
- }
- public void setUpdateName(String updateName) {
- /* 377 */ this.updateName = updateName;
- }
- @Column(name = "update_by", nullable = true, length = 255)
- public String getUpdateBy() {
- /* 384 */ return this.updateBy;
- }
- public void setUpdateBy(String updateBy) {
- /* 388 */ this.updateBy = updateBy;
- }
- @Column(name = "update_date", nullable = true, length = 255)
- public Date getUpdateDate() {
- /* 395 */ return this.updateDate;
- }
- public void setUpdateDate(Date updateDate) {
- /* 399 */ this.updateDate = updateDate;
- }
- @Column(name = "beforehand_date", nullable = true, length = 255)
- public Date getBeforehandDate() {
- return beforehandDate;
- }
- public void setBeforehandDate(Date beforehandDate) {
- this.beforehandDate = beforehandDate;
- }
- }
|