feat: add advisory product comparison tool

This commit is contained in:
Windows
2026-09-11 19:20:32 +08:00
parent 6757ca047d
commit b6429e0e9c
8 changed files with 227 additions and 3 deletions
+2 -1
View File
@@ -58,12 +58,13 @@ PERMISSIONS: tuple[tuple[int, str, str, str, str], ...] = (
(9029, "product-recommendation:review", "product-recommendation", "review", "all"),
(9030, "product-recommendation:publish", "product-recommendation", "publish", "all"),
(9031, "asset-allocation:backtest", "asset-allocation", "backtest", "all"),
(9032, "product-comparison:read:self", "product-comparison", "read", "self"),
)
# 客户:业务侧自助能力(自己的会话、反馈、转人工、自己的记忆画像)。
CUSTOMER_PERMISSIONS = (
9001, 9002, 9003, 9004, 9005, 9006, 9007, 9008, 9009, 9011,
9018, 9019, 9020, 9021, 9022, 9023, 9024,
9018, 9019, 9020, 9021, 9022, 9023, 9024, 9032,
)
# 风控专员:业务侧只读 + 跨客户记忆 + 审计只读,不含配置写权限。
RISK_PERMISSIONS = (9001, 9002, 9003, 9010, 9011, 9012)