Commit 0146bb45 by huangfusuper

增加操作人

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