🔨 执行日志.

This commit is contained in:
lijiahang
2024-03-13 19:17:50 +08:00
parent 149e5bc40c
commit b0afc8f80a
23 changed files with 1911 additions and 12 deletions

View File

@@ -67,7 +67,7 @@ public class ExecLogController {
}
@IgnoreLog(IgnoreLogMode.RET)
@GetMapping("/list")
@GetMapping("/host-list")
@Operation(summary = "查询全部执行主机日志")
@PreAuthorize("@ss.hasPermission('asset:exec-log:query')")
public List<ExecHostLogVO> getExecHostLogList(@RequestParam("logId") Long logId) {

View File

@@ -49,9 +49,6 @@ public class ExecHostLogVO implements Serializable {
@Schema(description = "退出码")
private Integer exitStatus;
@Schema(description = "日志路径")
private String logPath;
@Schema(description = "错误信息")
private String errorMessage;

View File

@@ -34,12 +34,6 @@ public class ExecLogVO implements Serializable {
@Schema(description = "执行用户名")
private String username;
@Schema(description = "执行来源")
private String source;
@Schema(description = "执行来源id")
private Long sourceId;
@Schema(description = "执行描述")
private String description;