feat: 优化选区逻辑和日志输出

主要修改:
1. 在LinkController中更新选区请求的日志信息,增强可读性。
2. 在LinkStatusService中重构选区操作的日志记录,增加步骤标识和详细信息,提升调试能力。
3. 移除performAutoRefresh方法,简化链接状态处理逻辑。
4. 在GameInterfaceResponse中新增操作成功字段,提供更清晰的响应数据。

技术细节:
- 通过优化日志输出和选区逻辑,提升了代码的可维护性和用户体验,同时确保了操作的透明性和准确性。
This commit is contained in:
zyh
2025-08-29 15:57:30 +08:00
parent 7499bce07b
commit 058970b95c
4 changed files with 99 additions and 78 deletions

View File

@@ -47,6 +47,8 @@ public class GameInterfaceResponse {
@Schema(description = "已经完成的点数")
private Integer completedPoints;
@Schema(description = "操作是否成功", example = "true")
public String getCodeNo() {
return codeNo;
}