123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- package com.idea.oa.flow2.model;
- import java.io.Serializable;
- import java.util.Date;
- public class FlowMainLog implements Serializable {
- private String id;
- private String flowMainId;
- private String formId;
- private String auditUser;
- private String auditContent;
- private String auditResult;
- private String auditType;
- private String flowType;
- private String flowPost;
- private String flowId;
- private String taskId;
- private String nextPersons;
- private String upMainLogId;
- private String ccList;
- private String pushUserKey;
- private String nodeName;
- private Integer status;
- private String createdBy;
- private Date createdAt;
- private String groupId;
- 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 getFlowMainId() {
- return flowMainId;
- }
- public void setFlowMainId(String flowMainId) {
- this.flowMainId = flowMainId == null ? null : flowMainId.trim();
- }
- public String getFormId() {
- return formId;
- }
- public void setFormId(String formId) {
- this.formId = formId == null ? null : formId.trim();
- }
- public String getAuditUser() {
- return auditUser;
- }
- public void setAuditUser(String auditUser) {
- this.auditUser = auditUser == null ? null : auditUser.trim();
- }
- public String getAuditContent() {
- return auditContent;
- }
- public void setAuditContent(String auditContent) {
- this.auditContent = auditContent == null ? null : auditContent.trim();
- }
- public String getAuditResult() {
- return auditResult;
- }
- public void setAuditResult(String auditResult) {
- this.auditResult = auditResult == null ? null : auditResult.trim();
- }
- public String getAuditType() {
- return auditType;
- }
- public void setAuditType(String auditType) {
- this.auditType = auditType == null ? null : auditType.trim();
- }
- public String getFlowType() {
- return flowType;
- }
- public void setFlowType(String flowType) {
- this.flowType = flowType == null ? null : flowType.trim();
- }
- public String getFlowPost() {
- return flowPost;
- }
- public void setFlowPost(String flowPost) {
- this.flowPost = flowPost == null ? null : flowPost.trim();
- }
- public String getFlowId() {
- return flowId;
- }
- public void setFlowId(String flowId) {
- this.flowId = flowId == null ? null : flowId.trim();
- }
- public String getTaskId() {
- return taskId;
- }
- public void setTaskId(String taskId) {
- this.taskId = taskId == null ? null : taskId.trim();
- }
- public String getNextPersons() {
- return nextPersons;
- }
- public void setNextPersons(String nextPersons) {
- this.nextPersons = nextPersons == null ? null : nextPersons.trim();
- }
- public String getUpMainLogId() {
- return upMainLogId;
- }
- public void setUpMainLogId(String upMainLogId) {
- this.upMainLogId = upMainLogId == null ? null : upMainLogId.trim();
- }
- public String getCcList() {
- return ccList;
- }
- public void setCcList(String ccList) {
- this.ccList = ccList == null ? null : ccList.trim();
- }
- public String getPushUserKey() {
- return pushUserKey;
- }
- public void setPushUserKey(String pushUserKey) {
- this.pushUserKey = pushUserKey == null ? null : pushUserKey.trim();
- }
- public String getNodeName() {
- return nodeName;
- }
- public void setNodeName(String nodeName) {
- this.nodeName = nodeName == null ? null : nodeName.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 getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId == null ? null : groupId.trim();
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark == null ? null : remark.trim();
- }
- }
|