Commit 0146bb45 by huangfusuper

增加操作人

parent fb20e308
......@@ -76,7 +76,7 @@ public class ApiFlowOperatingServiceImpl implements ApiFlowOperatingService {
public List<MakeUpReturn> specialRunBatch(SpecialJobParam specialJobParam) {
List<MakeUpReturn> makeUpReturns = new ArrayList<>(2);
//获取操作人
String operator = currentUserUtils.account();
String operator = specialJobParam.getOperatorName();
//工作空间名称
String workspaceName = specialJobParam.getWorkspaceName();
ValidationUtil.dataNotBank(workspaceName, "工作空间名称不允许为空");
......
......@@ -1327,7 +1327,7 @@ public class ApiFlowServiceImpl implements ApiFlowService {
if (order == null) {
order = 0;
}
String userName = currentUserUtils.account();
String userName = repairFlow.getOperatorName();
for (String repairTime : repairTimeList) {
WaitingRecord waitingRecord = new WaitingRecord();
RunRecording runRecording = new RunRecording();
......
......@@ -43,4 +43,9 @@ public class RepairFlow implements Serializable {
* nowDate时间格式
*/
private String nowDateTimeFormatName;
/**
* 操作人
*/
private String operatorName;
}
......@@ -62,5 +62,9 @@ public class SpecialJobParam implements Serializable {
* nowDate时间格式
*/
private String nowDateTimeFormatName;
/**
* 操作人
*/
private String operatorName;
}
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