34 lines
721 B
PHP
34 lines
721 B
PHP
<?php
|
|
return [
|
|
'title' => "네트워크장비정보",
|
|
'label' => [
|
|
'clientinfo_uid' => "소유자명",
|
|
'code' => "코드",
|
|
'type' => "종류",
|
|
'model' => "모델",
|
|
'price' => "금액",
|
|
'description' => "설명",
|
|
'status' => "상태",
|
|
'manufactur_at' => "입고일",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "작성일",
|
|
],
|
|
'DEFAULTS' => [
|
|
'type' => 'L2',
|
|
'status' => "use"
|
|
],
|
|
"TYPE" => [
|
|
"L2" => "L2",
|
|
"L3" => "L3",
|
|
"L4" => "L4",
|
|
"Router" => "Router",
|
|
"colocation" => "코로케이션",
|
|
],
|
|
"STATUS" => [
|
|
"use" => "사용가능",
|
|
"pause" => "일시정지",
|
|
"occupied" => "사용중",
|
|
"terminated" => "해지",
|
|
],
|
|
];
|