feat:glados和ddns脚本

This commit is contained in:
xiang
2026-05-03 23:11:50 +08:00
parent f36766112f
commit 72db541e22
25 changed files with 603 additions and 7 deletions

View File

@@ -8,10 +8,15 @@ import lombok.NoArgsConstructor;
@AllArgsConstructor
@NoArgsConstructor
public class TaskResult {
private String params;
/**
* 是否成功
*/
private boolean success;
/**
* 响应结果
*/
private String summary;
private Object detail;
}