fix: harden tenant auth and quality gates

This commit is contained in:
hectorzhao
2026-08-28 11:44:16 +08:00
parent c3bf8af3e6
commit 2744690f9f
51 changed files with 1750 additions and 466 deletions
+11
View File
@@ -0,0 +1,11 @@
export type AuditStatus = 'pending' | 'approved' | 'rejected';
export type AuditItem = {
id: string;
customer: string;
type: '模板' | '签名';
content: string;
risk: 'low' | 'medium' | 'high';
status: AuditStatus;
submittedAt: string;
};