- Implemented `check_suitability` method in `CoreReadOnlyRepository` for suitability determination based on customer and product risk levels. - Added `build_suitability_log_row` function in `suitability.py` for mapping suitability check results to `risk_suitability_log`. - Updated `AGENTS.md`, `ENVIRONMENT.md`, and `FLOW.md` to reflect changes in suitability assessment processes and documentation. - Revised `FRAMEWORK.md` and `MEMORY.md` to clarify project structure and data flow related to suitability checks. - Expanded `TODO.md` with tasks related to logging and auditing suitability assessments.
19 lines
808 B
SQL
19 lines
808 B
SQL
USE jinrong_core;
|
|
|
|
-- 最新净值 nav_date = 2026-09-04
|
|
INSERT INTO core_product_nav (product_id, nav, daily_chg_pct, nav_date) VALUES
|
|
('PROD-110022', 1.0300, 0.1500, '2026-09-04'),
|
|
('PROD-110023', 1.0200, 0.1000, '2026-09-04'),
|
|
('PROD-005827', 0.9500, -0.8000, '2026-09-04'),
|
|
('PROD-005828', 1.0200, 0.2000, '2026-09-04'),
|
|
('PROD-161725', 1.0500, 1.2000, '2026-09-04'),
|
|
('PROD-161726', 1.0500, 0.9000, '2026-09-04'),
|
|
('PROD-003095', 0.9500, -1.1000, '2026-09-04'),
|
|
('PROD-510300', 1.0300, 0.3500, '2026-09-04'),
|
|
('PROD-510500', 0.9800, -0.5000, '2026-09-04'),
|
|
('PROD-XYZ999', 0.9000, -2.0000, '2026-09-04'),
|
|
('PROD-000001', 1.0020, 0.0100, '2026-09-04'),
|
|
('PROD-000002', 1.0050, 0.0200, '2026-09-04'),
|
|
('PROD-WMG001', 1.0150, 0.0500, '2026-09-04'),
|
|
('PROD-PRIV01', 1.0800, 0.3000, '2026-09-04');
|