123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- package com.idea.oa.apply.model;
- import java.io.Serializable;
- import java.util.Date;
- public class ApplyLxWork implements Serializable {
- private String id;
- private String proId;
- private String ctrId;
- private String approvalId;
- private String workReceivableId;
- private String reason;
- private String comment;
- private String createdBy;
- private Date createdAt;
- private String updatedBy;
- private Date updatedAt;
- private Integer status;
- private String remark;
- private String fileDataIds;
- private String groupId;
- private Double presales;
- private String approvalForm;
- private String workReceivableForm;
- public String getApprovalForm() {
- return approvalForm;
- }
- public void setApprovalForm(String approvalForm) {
- this.approvalForm = approvalForm;
- }
- public String getWorkReceivableForm() {
- return workReceivableForm;
- }
- public void setWorkReceivableForm(String workReceivableForm) {
- this.workReceivableForm = workReceivableForm;
- }
- 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 getCtrId() {
- return ctrId;
- }
- public void setCtrId(String ctrId) {
- this.ctrId = ctrId == null ? null : ctrId.trim();
- }
- public String getApprovalId() {
- return approvalId;
- }
- public void setApprovalId(String approvalId) {
- this.approvalId = approvalId == null ? null : approvalId.trim();
- }
- public String getWorkReceivableId() {
- return workReceivableId;
- }
- public void setWorkReceivableId(String workReceivableId) {
- this.workReceivableId = workReceivableId == null ? null : workReceivableId.trim();
- }
- public String getReason() {
- return reason;
- }
- public void setReason(String reason) {
- this.reason = reason == null ? null : reason.trim();
- }
- public String getComment() {
- return comment;
- }
- public void setComment(String comment) {
- this.comment = comment == null ? null : comment.trim();
- }
- 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 Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark == null ? null : remark.trim();
- }
- public String getFileDataIds() {
- return fileDataIds;
- }
- public void setFileDataIds(String fileDataIds) {
- this.fileDataIds = fileDataIds == null ? null : fileDataIds.trim();
- }
- public String getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId == null ? null : groupId.trim();
- }
- public Double getPresales() {
- return presales;
- }
- public void setPresales(Double presales) {
- this.presales = presales;
- }
- }
|