47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
return [
|
|
'title' => "고객서비스정보",
|
|
'label' => [
|
|
'clientinfo_code' => "총관리자",
|
|
'user_uid' => "작업자",
|
|
'code' => "서비스코드",
|
|
'type' => "서비스형식",
|
|
'location' => "위치",
|
|
'switchinfo_uid' => "스위치정보",
|
|
'codeinfo_uid' => "장비번호",
|
|
'raid' => "RAID",
|
|
'billing_at' => "결제일",
|
|
'start_at' => "개통일",
|
|
'status' => "상태",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "신청일",
|
|
'deleted_at' => "삭제일",
|
|
],
|
|
'DEFAULTS' => [
|
|
'switch' => "default",
|
|
'location' => "default",
|
|
'type' => "default",
|
|
'status' => 'default'
|
|
],
|
|
"LOCATION" => [
|
|
"default" => "치바",
|
|
"tokyo" => "도쿄",
|
|
"3center" => "3센터",
|
|
],
|
|
"TYPE" => [
|
|
"default" => "일반",
|
|
"defence" => "방어",
|
|
"dedicated" => "전용",
|
|
"alternative" => "대체",
|
|
"test" => "테스트",
|
|
"VPN" => "VPN",
|
|
"ours" => "자사용",
|
|
"colocation" => "코로케이션",
|
|
],
|
|
"STATUS" => [
|
|
'default' => "사용중",
|
|
"pause" => "일시정지",
|
|
"terminated" => "해지",
|
|
],
|
|
];
|