123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- package com.idea.oa.apply.model;
- import java.io.Serializable;
- import java.util.Date;
- public class ApplyAddWork implements Serializable {
- private String id;
- private String proId;
- private String applyReasons;
- private Integer position;
- private String totalAddTime;
- private String fileDataIds;
- private Integer status;
- private String createdBy;
- private Date createdAt;
- private String updatedBy;
- private Date updatedAt;
- private String remark;
- private static final long serialVersionUID = 1L;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id == null ? null : id.trim();
- }
- public String getProId() {
- return proId;
- }
- public void setProId(String proId) {
- this.proId = proId == null ? null : proId.trim();
- }
- public String getApplyReasons() {
- return applyReasons;
- }
- public void setApplyReasons(String applyReasons) {
- this.applyReasons = applyReasons == null ? null : applyReasons.trim();
- }
- public Integer getPosition() {
- return position;
- }
- public void setPosition(Integer position) {
- this.position = position;
- }
- public String getTotalAddTime() {
- return totalAddTime;
- }
- public void setTotalAddTime(String totalAddTime) {
- this.totalAddTime = totalAddTime == null ? null : totalAddTime.trim();
- }
- public String getFileDataIds() {
- return fileDataIds;
- }
- public void setFileDataIds(String fileDataIds) {
- this.fileDataIds = fileDataIds == null ? null : fileDataIds.trim();
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getCreatedBy() {
- return createdBy;
- }
- public void setCreatedBy(String createdBy) {
- this.createdBy = createdBy == null ? null : createdBy.trim();
- }
- public Date getCreatedAt() {
- return createdAt;
- }
- public void setCreatedAt(Date createdAt) {
- this.createdAt = createdAt;
- }
- public String getUpdatedBy() {
- return updatedBy;
- }
- public void setUpdatedBy(String updatedBy) {
- this.updatedBy = updatedBy == null ? null : updatedBy.trim();
- }
- public Date getUpdatedAt() {
- return updatedAt;
- }
- public void setUpdatedAt(Date updatedAt) {
- this.updatedAt = updatedAt;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark == null ? null : remark.trim();
- }
- }
|