update 派工虚拟工序详情检索

master
yinq 2 years ago
parent aa02fc268b
commit 3128bc3f58

@ -19,5 +19,6 @@ public class RouterBpmVO {
private String routerType; private String routerType;
private String routerBo; private String routerBo;
private String site; private String site;
private String sfc;
private List<RouterStepDto> routerStep; private List<RouterStepDto> routerStep;
} }

@ -865,7 +865,7 @@
AND SD.OPERATION = #{operation} AND SD.OPERATION = #{operation}
</if> </if>
<if test="operationDescription != null and operationDescription != ''"> <if test="operationDescription != null and operationDescription != ''">
AND OT.DESCRIPTION = #{operationDescription} AND concat(OT.DESCRIPTION, '(' || C5.VALUE || ')') LIKE '%' ||#{operationDescription}|| '%'
</if> </if>
<if test="sfc != null and sfc != ''"> <if test="sfc != null and sfc != ''">
AND SD.SFC = #{sfc} AND SD.SFC = #{sfc}

@ -11,6 +11,18 @@ public class RouterStepDto extends RouterStep {
private String repairTime; private String repairTime;
@TableField(exist = false) @TableField(exist = false)
private String pictureAddress; 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() { public String getPictureAddress() {
return pictureAddress; return pictureAddress;

Loading…
Cancel
Save