@ -19,5 +19,6 @@ public class RouterBpmVO {
private String routerType;
private String routerBo;
private String site;
private String sfc;
private List<RouterStepDto> routerStep;
}
@ -865,7 +865,7 @@
AND SD.OPERATION = #{operation}
</if>
<if test="operationDescription != null and operationDescription != ''">
AND OT.DESCRIPTION = #{operationDescription}
AND concat(OT.DESCRIPTION, '(' || C5.VALUE || ')') LIKE '%' ||#{operationDescription}|| '%'
<if test="sfc != null and sfc != ''">
AND SD.SFC = #{sfc}
@ -11,6 +11,18 @@ public class RouterStepDto extends RouterStep {
private String repairTime;
@TableField(exist = false)
private String pictureAddress;
private String stepId;
@Override
public String getStepId() {
return stepId;
public void setStepId(String stepId) {
this.stepId = stepId;
public String getPictureAddress() {
return pictureAddress;