update 派工虚拟工序详情检索

master
yinq 2 years ago
parent aa02fc268b
commit 3128bc3f58

@ -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>
<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;
@TableField(exist = false)
private String stepId;
@Override
public String getStepId() {
return stepId;
}
@Override
public void setStepId(String stepId) {
this.stepId = stepId;
}
public String getPictureAddress() {
return pictureAddress;

Loading…
Cancel
Save