diff options
| author | joonhoekim <26rote@gmail.com> | 2025-08-18 07:04:44 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-08-18 07:04:44 +0000 |
| commit | 13bc512bf26618d5c040fd9b19cc0afd7af7c55b (patch) | |
| tree | 093af881e71f8c73b2a35c3f3a0e89658293c26c /config | |
| parent | 14e81ffb5ebe0941d36a3be44e29990a18026a99 (diff) | |
(고건) 리스크 관리 테이블 내 등급 정보 추가
Diffstat (limited to 'config')
| -rw-r--r-- | config/risksConfig.ts | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/config/risksConfig.ts b/config/risksConfig.ts index ceeb93f4..d0bcb9e9 100644 --- a/config/risksConfig.ts +++ b/config/risksConfig.ts @@ -63,6 +63,49 @@ const RISK_DASHBOARD_MENU_ITEM_LIST = [ '기업회생', '휴/폐업', ]; +const RISK_RATING_TOTAL_LIST = [ + { label: '1', value: 1 }, + { label: '2', value: 2 }, + { label: '3', value: 3 }, + { label: '4', value: 4 }, + { label: '5', value: 5 }, + { label: '6', value: 6 }, + { label: '7', value: 7 }, +]; +const RISK_RATING_CREDIT_LIST = [ + { label: 'AAA', value: 1 }, + { label: 'AA', value: 2 }, + { label: 'A', value: 3 }, + { label: 'BBB', value: 4 }, + { label: 'BB', value: 5 }, + { label: 'B', value: 6 }, + { label: 'CCC', value: 7 }, + { label: 'CC', value: 8 }, + { label: 'C', value: 9 }, + { label: 'D', value: 10 }, + { label: 'R', value: 11 }, +]; +const RISK_RATING_CASHFLOW_LIST = [ + { label: 'CR-1', value: 1 }, + { label: 'CR-2', value: 2 }, + { label: 'CR-3', value: 3 }, + { label: 'CR-4', value: 4 }, + { label: 'CR-5', value: 5 }, + { label: 'CR-6', value: 6 }, + { label: 'NF', value: 7 }, + { label: 'NR', value: 8 }, +]; +const RISK_RATING_WATCH_LIST =[ + { label: '정상', value: 1 }, + { label: '유보', value: 2 }, + { label: '관찰', value: 3 }, + { label: '주의', value: 4 }, + { label: '경보', value: 5 }, + { label: '위험', value: 6 }, + { label: '회수의문', value: 7 }, + { label: '휴폐업', value: 8 }, + { label: '부도', value: 9 }, +]; // ---------------------------------------------------------------------------------------------------- @@ -72,4 +115,8 @@ export { RISK_DASHBOARD_MENU_ITEM_LIST, RISK_EVENT_TYPE_LIST, RISK_PROVIDER_LIST, + RISK_RATING_CASHFLOW_LIST, + RISK_RATING_CREDIT_LIST, + RISK_RATING_TOTAL_LIST, + RISK_RATING_WATCH_LIST, };
\ No newline at end of file |
