diff --git a/backend/src/Health.Domain/Entities/exercise_plan.cs b/backend/src/Health.Domain/Entities/exercise_plan.cs
index 595e204..3ffe1d0 100644
--- a/backend/src/Health.Domain/Entities/exercise_plan.cs
+++ b/backend/src/Health.Domain/Entities/exercise_plan.cs
@@ -7,7 +7,7 @@ public sealed class ExercisePlan
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
- public DateOnly WeekStartDate { get; set; } // 本周一
+ public DateOnly WeekStartDate { get; set; } // 起始日期
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
@@ -22,7 +22,7 @@ public sealed class ExercisePlanItem
{
public Guid Id { get; set; }
public Guid PlanId { get; set; }
- public int DayOfWeek { get; set; } // 0=周一, 6=周日
+ public int DayOfWeek { get; set; } // C# DayOfWeek: 0=周日, 6=周六
public string ExerciseType { get; set; } = string.Empty; // 散步/慢跑/游泳
public int DurationMinutes { get; set; }
public bool IsCompleted { get; set; }
diff --git a/backend/src/Health.Infrastructure/AI/AgentHandlers/consultation_agent_handler.cs b/backend/src/Health.Infrastructure/AI/AgentHandlers/consultation_agent_handler.cs
index b5acb28..2f21b0d 100644
--- a/backend/src/Health.Infrastructure/AI/AgentHandlers/consultation_agent_handler.cs
+++ b/backend/src/Health.Infrastructure/AI/AgentHandlers/consultation_agent_handler.cs
@@ -1,20 +1,11 @@
namespace Health.Infrastructure.AI.AgentHandlers;
///
-/// AI 问诊 Agent 工具处理器——转医生
+/// 问诊 Agent 工具处理器(问诊转医生走专门界面,此处只保留档案和记录查询)
///
public static class ConsultationAgentHandler
{
- public static readonly ToolDefinition RequestDoctorTool = new()
- {
- Function = new()
- {
- Name = "request_doctor", Description = "请求转接真人医生",
- Parameters = new { type = "object", properties = new { reason = new { type = "string" }, urgency_level = new { type = "string" } } }
- }
- };
-
- public static List Tools => [CommonAgentHandler.QueryHealthRecordsTool, CommonAgentHandler.CheckArchiveTool, RequestDoctorTool];
+ public static List Tools => [CommonAgentHandler.QueryHealthRecordsTool, CommonAgentHandler.CheckArchiveTool];
public static Task