feat(church-profile): add AI provider/model/key columns + migration
This commit is contained in:
@@ -21,6 +21,13 @@ public class ChurchProfile : AuditableEntity, IAuditable
|
||||
public string? BankAccountNumber { get; set; }
|
||||
public string? BankRoutingNumber { get; set; }
|
||||
|
||||
// ── AI assist provider settings (editable via Church Profile → AI 設定 tab) ──
|
||||
public string AiProvider { get; set; } = "Claude"; // "Claude" | "Gemini"
|
||||
public string? ClaudeModel { get; set; } = "claude-haiku-4-5-20251001";
|
||||
public string? ClaudeApiKey { get; set; } // secret, stored plaintext
|
||||
public string? GeminiModel { get; set; } = "gemini-2.5-flash-lite";
|
||||
public string? GeminiApiKey { get; set; } // secret, stored plaintext
|
||||
|
||||
/// <summary>Next check number to allocate; consumed (++) when a check is issued.</summary>
|
||||
public int NextCheckNumber { get; set; } = 1001;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user