Initial commit: HealthManager full-stack health management platform

Backend: .NET 10 + PostgreSQL + EF Core + JWT + SignalR
Frontend patient: React 19 + TypeScript + Vite (mobile H5)
Frontend doctor: React 19 + TypeScript + Vite (desktop web)
This commit is contained in:
MingNian
2026-05-20 16:18:56 +08:00
commit 435af55c4a
215 changed files with 18595 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
namespace HealthManager.Domain.Entities;
public class ExerciseRecord
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public string ExerciseType { get; set; } = string.Empty;
public int DurationMin { get; set; }
public string? Intensity { get; set; } // low, moderate, high
public int? CaloriesBurned { get; set; }
public string? Notes { get; set; }
public DateOnly RecordedAt { get; set; }
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public User User { get; set; } = null!;
}