summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/risksConfig.ts47
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