feat(monitor): add UserProfile + MonitorMetric catalog + Indicator.seriesKey

数据层(spec 2026-05-26):
- UserProfile @Model:核心 4 项 + 健康背景 + 用药,SwiftData 单例(loadOrCreate)
- Indicator 加 seriesKey: String?,标识长期指标分组('bp.systolic' 等)
- MonitorMetric enum 8 case:血压(2 field 拆 2 Indicator)/ 空腹+餐后血糖 /
  体重 / 体温 / 心率 / SpO2 / 身高
- effectiveRange(for:profile:) 实现 1 条 Profile-aware 规则:
  age >= 65 时 bp.systolic 上限 140→150
- KangkangApp schema 加 UserProfile.self

测试 17 个全绿(UserProfile 6 + MonitorMetric 11);schema 烟测扩 2(seriesKey roundtrip + UserProfile persist)。
UI 层 + Timeline 合并下个 commit。
This commit is contained in:
link2026
2026-05-26 07:40:42 +08:00
parent 7ede38ae06
commit 9a6d21100b
7 changed files with 484 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ struct ModelsSchemaTests {
Asset.self,
ChatTurn.self,
Symptom.self,
UserProfile.self,
])
let config = ModelConfiguration(schema: schema, isStoredInMemoryOnly: true)
return try ModelContainer(for: schema, configurations: [config])
@@ -108,4 +109,52 @@ struct ModelsSchemaTests {
#expect(all.count == 1)
#expect(all.first?.referencedIndicatorIDs == ["abc"])
}
@Test func indicatorSeriesKeyRoundtrip() throws {
let container = try makeContainer()
let ctx = ModelContext(container)
let bp = Indicator(
name: "收缩压",
value: "125",
unit: "mmHg",
range: "90-140",
status: .normal,
pinned: true,
seriesKey: "bp.systolic"
)
ctx.insert(bp)
try ctx.save()
let fetched = try #require(try ctx.fetch(FetchDescriptor<Indicator>()).first)
#expect(fetched.seriesKey == "bp.systolic")
#expect(fetched.pinned == true)
}
@Test func indicatorSeriesKeyDefaultsToNil() {
let i = Indicator(name: "ALT", value: "32", unit: "U/L", range: "9-50", status: .normal)
#expect(i.seriesKey == nil)
}
@Test func userProfileSchemaPersistsAcrossSave() throws {
let container = try makeContainer()
let ctx = ModelContext(container)
let p = UserProfile(
birthYear: 1985,
biologicalSexRaw: "male",
heightCM: 175,
bloodTypeRaw: "A",
chronicConditions: ["高血压"]
)
ctx.insert(p)
try ctx.save()
let fetched = try #require(try ctx.fetch(FetchDescriptor<UserProfile>()).first)
#expect(fetched.birthYear == 1985)
#expect(fetched.sex == .male)
#expect(fetched.heightCM == 175)
#expect(fetched.bloodTypeRaw == "A")
#expect(fetched.chronicConditions == ["高血压"])
}
}