123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- package com.idea.oa.flow2.model;
- import java.io.Serializable;
- import java.util.Date;
- public class FlowMainPush implements Serializable {
- private String id;
- private String flowMainId;
- private String formId;
- private String pushUser;
- private String pushUserKey;
- private String nodeName;
- private Integer pushType;
- private Integer pushRole;
- private String flowType;
- private String flowPost;
- private String flowId;
- private String taskId;
- private String upMainLogId;
- private Integer status;
- private String createdBy;
- private Date createdAt;
- private String updatedBy;
- private Date updatedAt;
- 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 getPushUser() {
- return pushUser;
- }
- public void setPushUser(String pushUser) {
- this.pushUser = pushUser == null ? null : pushUser.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 getPushType() {
- return pushType;
- }
- public void setPushType(Integer pushType) {
- this.pushType = pushType;
- }
- public Integer getPushRole() {
- return pushRole;
- }
- public void setPushRole(Integer pushRole) {
- this.pushRole = pushRole;
- }
- 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 getUpMainLogId() {
- return upMainLogId;
- }
- public void setUpMainLogId(String upMainLogId) {
- this.upMainLogId = upMainLogId == null ? null : upMainLogId.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 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();
- }
- }
|