Commit 4b796e0f authored by tangwei's avatar tangwei

增加设计图纸审核

parent 18dc4947
......@@ -76,4 +76,6 @@ public class PowerStationDto extends BaseDto {
@ApiModelProperty(value = "计划实例id")
private String planInstanceId;
@ApiModelProperty(value = "设计图纸审核")
private String drawingReview;
}
......@@ -127,4 +127,8 @@ public class PowerStation extends BaseEntity {
*/
@TableField("plan_instance_id")
private String planInstanceId;
@TableField("drawing_review")
private String drawingReview;
}
......@@ -134,6 +134,7 @@ public class PowerStationServiceImpl extends BaseService<PowerStationDto, PowerS
if (VERIFY_RESULT_YES.equals(result)) {
powerStation.setProcessStatus(PowerStationProcessStateEnum.完成.getName());
}
powerStation.setDrawingReview(resultObj.getName());
break;
default:
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment