| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- *
- */
- package cn.com.lzt.orders.entity;
- /**
- * @author xzx
- *
- * 2018年10月12日
- *
- */
- public class OrdersFlowDto {
- private String nextnode;
- private String nextNodeName;
- private String operateType;
- private String taskId;
- private String dealOption;
- private String model;
- public String getNextnode() {
- return nextnode;
- }
- public void setNextnode(String nextnode) {
- this.nextnode = nextnode;
- }
- public String getNextNodeName() {
- return nextNodeName;
- }
- public void setNextNodeName(String nextNodeName) {
- this.nextNodeName = nextNodeName;
- }
- public String getOperateType() {
- return operateType;
- }
- public void setOperateType(String operateType) {
- this.operateType = operateType;
- }
- public String getTaskId() {
- return taskId;
- }
- public void setTaskId(String taskId) {
- this.taskId = taskId;
- }
- public String getDealOption() {
- return dealOption;
- }
- public void setDealOption(String dealOption) {
- this.dealOption = dealOption;
- }
- public String getModel() {
- return model;
- }
- public void setModel(String model) {
- this.model = model;
- }
-
-
- }
|