1. 解除动态规则发送请求成功/失败返回状态

2. 在指令中添加局点/部门信息
This commit is contained in:
EnderByEndera
2024-04-11 08:56:35 +08:00
parent 5e17aa5e60
commit 9ceb2e583e
6 changed files with 53 additions and 11 deletions

View File

@@ -109,7 +109,12 @@ public class TaskService {
public List<TaskCommandInfo> getStaticCommandInfos(Long taskId) {
List<TaskCommandInfo> staticCommandInfos = taskMapper.getStaticCommandInfos(taskId);
staticCommandInfos.forEach(TaskCommandInfo::setProtocolNum);
staticCommandInfos.forEach(taskCommandInfo -> {
taskCommandInfo.setProtocolNum();
taskCommandInfo.setMask();
});
return staticCommandInfos;
}