OcapStepActionDTO.java
package com.mycim.valueobject.ocap.dto;
import java.io.Serializable;
/**
* @author songpy
* @version 1.0.0
* @date 2021/6/16
**/
public class OcapStepActionDTO implements Serializable {
private static final long serialVersionUID = -2306185163256281930L;
private String actionId;
private String pathId;
private String nextStepId;
private Integer showPriority;//按钮显示的优先级,越小越靠前
public String getActionId() {
return actionId;
}
public void setActionId(String actionId) {
this.actionId = actionId;
}
public String getPathId() {
return pathId;
}
public void setPathId(String pathId) {
this.pathId = pathId;
}
public String getNextStepId() {
return nextStepId;
}
public void setNextStepId(String nextStepId) {
this.nextStepId = nextStepId;
}
public int getShowPriority() {
return showPriority;
}
public void setShowPriority(Integer showPriority) {
this.showPriority = showPriority;
}
@Override
public String toString() {
return "OcapStepActionDTO{" + "actionId='" + actionId + '\'' + ", pathId='" + pathId + '\'' + ", nextStepId='" +
nextStepId + '\'' + ", showPriority=" + showPriority + '}';
}
}