Merge branch 'lichang' into lite

This commit is contained in:
TsMask
2025-04-29 16:15:16 +08:00
670 changed files with 17749 additions and 19324 deletions

24
.gitignore vendored
View File

@@ -10,6 +10,15 @@
.history/
.idea/
# Built Visual Studio Code Extensions
*.vsix
*.log
*.log-*
*.bak
*.bak*
*.exe
local/omc_db.sqlite
# Run temp file and dir
restagent/backup/
restagent/log/
@@ -22,18 +31,3 @@ sshsvc/sshsvc
sshsvc/mmllog/
sshsvc/mmlhome/
sshsvc/log/
tools/loadmconf/loadmconf
tools/loadpconf/loadpconf
reference
vendor
# Built Visual Studio Code Extensions
*.vsix
*.log
*.log-*
*.bak
*.bak*
*.exe
local/omc_db.sqlite

24
.vscode/launch.json vendored
View File

@@ -9,33 +9,17 @@
"type": "go",
"request": "launch",
"mode": "debug",
"program": "./restagent/restagent.go",
"program": "main.go",
"console": "integratedTerminal",
"args": ["--env", "local"] // 走开发配置
},
{
"name": "DEBUG restagent",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "d:/omc.git/be.ems/restagent/",
"console": "integratedTerminal"
"args": ["--env", "local", "-c", "./local/omc.yaml"]
},
{
"name": "debug sshsvc",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "d:/omc.git/be.ems/sshsvc/sshsvc.go",
"program": "sshsvc/sshsvc.go",
"console": "integratedTerminal"
},
{
"name": "debug encyaml",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "d:/omc.git/be.ems/tools/encode",
"console": "integratedTerminal"
}
}
]
}

View File

@@ -1,5 +1,24 @@
# 版本发布日志
## 2.2503.4-20250331
- 重构 项目目录结构
- 重构 数据库多语言表结构变更
- 新增 支持厂商自定定义目录
- 重构 备份数据输出路径变更
- 更新 SMF/UPF参数配置
- 优化 数据源不强制连接状态
- 修复 UPFTodayFlowUpdate函数的返回值
- 重构 移除安装和升级命令中的 M_PARAM 参数, 标准版std 轻量版lite
- 重构 UPF流量总计7,30天累计数据查询
- 优化 自定义指标公式计算
- 更新 kpi_title_en名称为更准确的描述
- 修复 KPI推送ws订阅缺失_x下划线标识
- 修复 处理兼容旧网元查询函数
- 新增 密码强度校验/密码过期时间功能
- 新增 密码不允许使用最近修改的密码功能
- 修复 网元巡检告警检查创建时间不为0的
## 2.2503.2-20250314
- 更新 SMSC CDR原因值字典翻译

View File

@@ -8,6 +8,7 @@
| --------------------- | -------------------------- |
| /usr/local/omc/static | 网管静态资源文件路径 |
| /usr/local/omc/upload | 网管上传文件资源路径 |
| /usr/local/omc/backup | 网管备份网元的数据路径 |
| /usr/local/etc/omc | 网管与网元之间相关文件 |
| /tmp/omc | 存放从网元拉取到本地的文件 |
@@ -31,11 +32,11 @@ masterauth "helloearth"
replica-read-only no
```
## 一些服务器
## 编译发布
```txt
```bash
# 版本发布空间
\\192.168.1.205\share\release\omc
\\192.168.1.205\share_205\release\omc
# 研发git
192.168.1.120
@@ -46,29 +47,26 @@ agtuser/admin123
manager/admin123
omcuser/a9tU53r
# 网管编译环境
主线22.04192.168.2.166
simon/admin123
makeomc.sh -m all -c ba
主线18.04192.168.6.188
simon/admin123
makeomc.sh (前端复制166的需要166先打包编译前端
多租户22.04192.168.2.211
simon/admin123
makeomc.sh -m all
# 软件包编译环境 密码Admin123@pl
ssh -P 18522 root@192.168.9.58 # arm64 anolis:8
ssh -P 18422 root@192.168.9.58 # amd64 ubuntu:22.04
ssh -P 18322 root@192.168.9.58 # amd64 ubuntu:18.04
ssh -P 18222 root@192.168.9.58 # amd64 openEuler:20.03
ssh -P 18122 root@192.168.9.58 # arm64 ubuntu:18.04
```
# 系统工具依赖包
[ubuntu-iperf3](https://launchpad.net/ubuntu/+source/iperf3)
[ubuntu-libsctp1](https://launchpad.net/ubuntu/jammy/amd64/libsctp1/1.0.19+dfsg-1build1)
[ky10-aarch64](https://update.cs2c.com.cn/NS/V10/V10SP3/os/adv/lic/base/aarch64/Packages/)
- [ubuntu-iperf3](https://launchpad.net/ubuntu/+source/iperf3)
- [ubuntu-libsctp1](https://launchpad.net/ubuntu/jammy/amd64/libsctp1/1.0.19+dfsg-1build1)
- [ky10-aarch64](https://update.cs2c.com.cn/NS/V10/V10SP3/os/adv/lic/base/aarch64/Packages/)
## 开发
## 调试开发
```sh
# 安装 Go版本 1.21.6 后进入项目根目录
cd ./restagent
cd /ems_backend
# 下载依赖
go mod download
@@ -77,49 +75,54 @@ apt install -y libpcap-dev
go env -w CGO_ENABLED='1'
# 调试启动
go run restagent.go -c ./etc/restconf.yaml --env local
go run main.go --env local -c ./local/omc.yaml
# 调试分析
# http://127.0.0.1:33060/debug/pprof/
go tool pprof -http=:9090 http://127.0.0.1:33060/debug/pprof/heap
# 生成 swagger 文档
swag init -d ./ -g ./restagent/restagent.go -o ./swagger2docs
swag fmt -d ./ -g ./restagent/restagent.go
swag init -d ./ -g main.go -o ./swagger_docs
swag fmt -d ./ -g main.go
# 打包命名 restagent
go build -ldflags="-s -w" -o restagent
# 打包命名 omc
go build -ldflags="-s -w" -o omc
```
## 打包
## 二进制打包
```sh
go env -w GOOS=linux
go env -w GOOS=windows
cd ./restagent
go build -o restagent -v -ldflags="-s -w -X 'be.ems/lib/global.Version=24.09.20' -X 'be.ems/lib/global.BuildTime=`date`' -X 'be.ems/lib/global.GoVer=`go version`'"
go build -o omc -v -ldflags="-s -w -X 'be.ems/src/framework/config.Version=2.2503.14' -X 'be.ems/src/framework/config.BuildTime=$(date)' -X 'be.ems/src/framework/config.GoVer=$(go version)'"
```
## 安装
## 软件包安装
```sh
# BA初始安装
/usr/local/omc/bin/setomc.sh -m install -c ba
/usr/local/omc/bin/setomc.sh -m upgrade -c ba
/usr/local/omc/bin/setomc.sh -m skip -c ba
# 脚本升级
sudo bash /usr/local/etc/omc/script/setup.sh -u
# 安装包安装
sudo M_PARAM=install C_PARAM=omc dpkg -i /usr/local/omc/bin/ems_2.240620.1_amd64.deb
sudo M_PARAM=upgrade C_PARAM=ba dpkg -i /usr/local/omc/bin/ems_2.240620.1_amd64.deb
# Deb
sudo dpkg -l omc
sudo dpkg -r omc
sudo M_PARAM=std C_PARAM=agt dpkg -i omc-r2.2503.2-20250320-ubuntu-amd64.deb
sudo M_PARAM=lite C_PARAM=agt dpkg -i omc-r2.2503.2-20250320-ubuntu-amd64.deb
# 麒麟
sudo rpm -Uvh --nosignature --reinstall --force /home/omcuser/omc.git/build.ems/release/rpms/arm64/omc-r2.2412.2-20241213-ky10.rpm
sudo /usr/local/omc/bin/setomc.sh -m install -c agt
# Rpm
sudo rpm -qi omc
sudo rpm -e omc
sudo M_PARAM=lite C_PARAM=agt rpm -i omc-r2.2503.2-20250320-anolis-arm64.rpm
sudo rpm -Uvh --reinstall --nosignature --force omc-r2.2503.2-20250320-anolis-arm64.rpm
```
## 数据库相关
```sh
# 数据库导入
mysql -uroot -p1000omc@kp! -P 33066 --protocol tcp -D omc_db < u_user_info.sql
@@ -130,10 +133,14 @@ INSERT INTO cdr_event_smsc_bak SELECT * FROM cdr_event_smsc WHERE TIMESTAMP <= 1
DELETE FROM cdr_event_smsc WHERE TIMESTAMP <= 1739540000
# 执行数据库脚本
cd ./restagent
./restagent.exe -c ./etc/restconf.yaml --sqlPath ../database/common --sqlSource default
./restagent.exe -c ./etc/restconf.yaml --sqlPath ../database/install --sqlSource default
./restagent.exe -c ./etc/restconf.yaml --sqlPath ../database/upgrade/upg_20250313.sql --sqlSource lite
./omc.exe -c ./local/omc.yaml --sqlPath ./build/database/std/common --sqlSource std
./omc.exe -c ./local/omc.yaml --sqlPath ./build/database/std/install --sqlSource std
./omc.exe -c ./local/omc.yaml --sqlPath ./build/database/std/upgrade/upg_sys_dict_data.sql --sqlSource std
/usr/local/omc/bin/restagent -c /usr/local/omc/etc/restconf.yaml --sqlPath /usr/local/omc/etc/db/upgrade/upg_20250313.sql --sqlSource lite
./omc.exe -c ./local/omc.yaml --sqlPath ./build/database/lite/common --sqlSource lite
./omc.exe -c ./local/omc.yaml --sqlPath ./build/database/lite/install --sqlSource lite
./omc.exe -c ./local/omc.yaml --sqlPath ./build/vendor/omc/database/lite/customized.sql --sqlSource lite
sudo /usr/local/bin/omc -c /usr/local/etc/omc/omc.yaml --sqlPath /usr/local/etc/omc/database/lite/install --sqlSource lite
sudo /usr/local/bin/omc -c /usr/local/etc/omc/omc.yaml --sqlPath /usr/local/etc/omc/database/lite/upgrade/upg_sys_dict_data.sql --sqlSource lite
```

28
build/README.md Normal file
View File

@@ -0,0 +1,28 @@
# build
打包添加到构建工具的 `/tmp/usr/local/etc/omc` 目录内
## 文件资源
| 路径 | 说明 |
| -------- | ---------------- |
| database | 数据库 |
| default | 默认配置文件 |
| vendor | 各厂商的定制修改 |
## 编译发布
```bash
# =================== Vendor Database
echo
ApiDir=/root/omc.git/be.ems
BuildDir=/root/omc.git/build.ems
dirs="database default vendor"
for v in ${dirs}; do
path=$BuildDir/tmp/usr/local/etc/omc
rm -rf ${path}/${v}
cp -rf ${ApiDir}/build/${v} ${path}/${v}
done
```

View File

@@ -0,0 +1,36 @@
-- ----------------------------
-- Table structure for alarm_define
-- ----------------------------
DROP TABLE IF EXISTS "alarm_define";
CREATE TABLE "alarm_define" (
"alarm_id" text(32) NOT NULL,
"alarm_code" integer(11),
"alarm_title_cn" text(255),
"alarm_title" text(255),
"ne_type" text(32),
"alarm_type" text(64),
"orig_severity" text(255),
"object_uid" text(28),
"object_name" text(64),
"object_type" text(20),
"location_info" text(255),
"specific_problem" text(255),
"specific_problem_id" text(32),
"add_info" text(255),
"threshold" integer(20),
"status" text(255),
PRIMARY KEY ("alarm_id")
);
-- ----------------------------
-- Records of alarm_define
-- ----------------------------
INSERT INTO "alarm_define" VALUES ('HXEMSCM10100', 10100, 'License即将过期', 'The license is about to expire', 'OMC', 'EnvironmentalAlarm', 'Warning', NULL, 'EMS;CM;License', 'CM', '', 'Alarm cause: the license expiration time is less than %d days', 'AC10100', '', 30, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSPM10200', 10200, '性能越限', 'Performance exceeds the threshold', 'OMC', 'QualityOfServiceAlarm', 'Warning', NULL, 'EMS;PM', 'PM', '', 'Alarm cause: performance exceed threshold, alarm generate from omc', 'AC10200', '', NULL, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSPM10201', 10201, '性能数据采集超时', 'Performance data report timed out', 'OMC', 'EquipmentAlarm', 'Minor', NULL, 'EMS;PM', 'PM', '', 'Alarm cause: performance data report timed out, period=%d(minutes), time delay=%d(minutes), alarm generate from omc', 'AC10201', '', NULL, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSSM10000', 10000, '系统状态异常', 'The system state is abnormal', 'OMC', 'EquipmentAlarm', 'Major', NULL, 'EMS;SystemManagement;Heartbeat', 'SystemState', '', 'Alarm cause: the system state of target NE has not been received for %d seconds', 'AC10000', '', 30, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSSM10001', 10001, 'CPU占用率越限', 'CPU usage exceeds the threshold', 'OMC', 'EnvironmentalAlarm', 'Minor', NULL, 'EMS;SystemManagement;Heartbeat', 'SystemState', '', 'Alarm cause: the CPU occupancy rate of the target NE exceeds %d', 'AC10001', '', 70, 'Active');
INSERT INTO "alarm_define" VALUES ('HXEMSSM10002', 10002, 'NTP时间同步失败', 'NTP Sync failure', 'OMC', 'EnvironmentalAlarm', 'Minor', NULL, 'EMS;SystemManagement;Heartbeat', 'SystemState', '', 'Alarm cause: the CPU occupancy rate of the target NE exceeds %d', 'AC10001', '', 70, 'Active');
-- Dump completed on 2024-03-06 17:27:01

View File

@@ -0,0 +1,183 @@
-- ----------------------------
-- Table structure for chart_graph
-- ----------------------------
DROP TABLE IF EXISTS "chart_graph";
CREATE TABLE "chart_graph" (
"row_id" integer NOT NULL,
"row_type" text(255) NOT NULL,
"row_group" text(32) NOT NULL,
"id" text(64) NOT NULL,
"type" text(64),
"depth" integer(11),
"x" integer,
"y" integer,
"size" text(64),
"icon" text(1024),
"img" text(255),
"clip_cfg" text(1024),
"direction" text(64),
"source" text(64),
"target" text(64),
"combo_id" text(64),
"padding" text(64),
"parent_id" text(64),
"children" text(1024),
"style" text(2048),
"label" text(64),
"label_cfg" text(1024),
PRIMARY KEY ("row_id")
);
-- ----------------------------
-- Indexes structure for table chart_graph
-- ----------------------------
CREATE INDEX "idx_group"
ON "chart_graph" (
"row_group" ASC
);
-- ----------------------------
-- Records of chart_graph
-- ----------------------------
INSERT INTO "chart_graph" VALUES (1, 'node', 'hello', 'node-1', 'rect', 0, -218, -20, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#ff0000","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ff0000"}', 'Node-1', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2, 'node', 'hello', 'node-2', 'star', 0, 82, -15, '60', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#2bff00","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#05ff16"}', 'Node-2', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (3, 'edge', 'hello', 'node-1~1704427926706~node-2', 'polyline', 0, 0, 0, '', '', '', '', '', 'node-1', 'node-2', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"endArrow":true,"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":5,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#0062ff"}', '1 to 2', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1177, 'node', 'demo', 'one', 'circle-animate-shape-r', 0, -123.911, 5, '60', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#00ff91","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ff4d4d"}', 'One', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1178, 'node', 'demo', 'two', 'circle-animate-shape-stroke', 0, 228.652, 10.3481, '60', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#fe5a01","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#9497ff"}', 'Two', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1179, 'node', 'demo', 'three', 'rect-animate-state', 0, 65, 127, '[80,40]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#ffffff","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'Three', '{"offset":0,"position":"center","style":{"fill":"#000000","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1180, 'edge', 'demo', 'one~1704764271132~two', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'one', 'two', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"endArrow":true,"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#fbfe39"}', 'one-two', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1181, 'edge', 'demo', 'two~1704764297866~three', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'two', 'three', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#80f0ff"}', 'two-three', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1182, 'edge', 'demo', 'three~1704764353721~one', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'three', 'one', '', '', '', '', '{"cursor":"pointer","lineWidth":1,"offset":20,"radius":2,"stroke":"#ffffff"}', 'three-one', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1725, 'node', '5GC System Architecture1', 'Base', 'image-animate-state', 0, -530.671, -66.6639, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/base.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '(R)AN', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1726, 'node', '5GC System Architecture1', 'DN', 'image-animate-state', 0, -529.46, 62.62, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/cloud.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'DN', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1727, 'node', '5GC System Architecture1', 'OMC', 'image-animate-state', 0, -527.746, -346.76, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/service_db.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#783636"}', 'OMC', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1728, 'node', '5GC System Architecture1', 'IMS', 'rect-animate-state', 23, 22.4671, -231.155, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f1212c"}', 'IMS', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1729, 'node', '5GC System Architecture1', 'NSSF', 'rect-animate-state', 22, -116.316, -335.56, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NSSF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1730, 'node', '5GC System Architecture1', 'UPF', 'rect-animate-state', 21, -268.005, -52.6272, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UPF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1731, 'node', '5GC System Architecture1', 'UE', 'image', 14, -532.589, -231.622, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mobile.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'UE', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1732, 'node', '5GC System Architecture1', 'PCF', 'rect-animate-state', 20, -267.905, -152.894, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'PCF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1733, 'node', '5GC System Architecture1', 'SMF', 'rect-animate-state', 19, -117.66, -53.1161, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f0212c"}', 'SMF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1734, 'node', '5GC System Architecture1', 'AMF', 'rect-animate-state', 18, -268.316, -235.06, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AMF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1735, 'node', '5GC System Architecture1', 'UDM', 'rect-animate-state', 17, 19.8172, -333.371, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UDM', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1736, 'node', '5GC System Architecture1', 'AUSF', 'rect-animate-state', 16, -269.316, -335.56, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AUSF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1737, 'node', '5GC System Architecture1', 'NRF', 'rect', 15, 26.4865, -150.732, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"cursor":"pointer","fill":"#f5222d","lineWidth":1,"radius":4,"stroke":"#f5222d"}', 'NRF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1738, 'node', '5GC System Architecture1', 'LMF', 'rect', 14, -266.158, 48.8341, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"cursor":"pointer","fill":"#f5222d","lineWidth":1,"radius":4,"stroke":"#f5222d"}', 'LMF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1739, 'node', '5GC System Architecture1', 'NEF', 'rect', 13, -120.613, -149.621, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#f5222d","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NEF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1740, 'node', '5GC System Architecture1', 'MME', 'rect', 12, -118.002, -233.655, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"cursor":"pointer","fill":"#f5222d","lineWidth":1,"radius":4,"stroke":"#f5222d"}', 'MME', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1741, 'node', '5GC System Architecture1', 'N3IWF', 'rect', 11, 20.4198, -58.2659, '[80,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '5GC', '', '', '', '{"cursor":"pointer","fill":"#f5222d","lineWidth":1,"radius":4,"stroke":"#f5222d"}', 'N3IWF', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1742, 'edge', '5GC System Architecture1', '5GC~1704764825481~Base', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'Base', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N2', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1743, 'edge', '5GC System Architecture1', 'UE~1704534736553~AMF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'UE', 'Base', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1744, 'edge', '5GC System Architecture1', 'RAN~1704534829539~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N3', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1745, 'edge', '5GC System Architecture1', 'DN~1704534869360~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'DN', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N6', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1746, 'edge', '5GC System Architecture1', 'OMC~1704535021073~5GC', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'OMC', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1747, 'edge', '5GC System Architecture1', 'SMF~1704765447548~UPF', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N4', '{"autoRotate":true,"position":"end","refX":-12,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1748, 'combo', '5GC System Architecture1', '5GC', 'rect', 10, -121.415, -143.363, '[40,40]', '', '', '', '', '', '', '', '[40,45,40,45]', '', '[{"comboId":"5GC","depth":12,"id":"IMS","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NSSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UPF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"PCF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"SMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UDM","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AUSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NRF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"LMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NEF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"MME","itemType":"node"},{"comboId":"5GC","depth":12,"id":"N3IWF","itemType":"node"}]', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"grab","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(234, 234, 234)"},"fill":"#ffffff","fillOpacity":0.1,"height":425.39430000000004,"highlight":{"fill":"rgb(253, 253, 253)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(253, 253, 253)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"lineWidth":1,"r":212.69715000000002,"radius":2,"selected":{"fill":"rgb(253, 253, 253)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff","width":376.8029}', 'Core Network', '{"position":"top","refX":10,"refY":10,"style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1869, 'node', '5GC System Architecture2', 'Base', 'image-animate-state', 0, -530.671, -66.6639, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/base.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '(R)AN', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1870, 'node', '5GC System Architecture2', 'DN', 'image-animate-state', 0, -544.46, 45.62, '[60,60]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/cloud6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'DN', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1871, 'node', '5GC System Architecture2', 'OMC', 'image-animate-state', 0, -531.746, -291.76, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/omc6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#783636"}', 'OMC', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1872, 'node', '5GC System Architecture2', 'IMS', 'image-animate-state', 23, 32.8038, -208.015, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ims6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f1212c"}', 'IMS', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1873, 'node', '5GC System Architecture2', 'NSSF', 'image-animate-state', 22, -103.637, -294.34, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nssf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NSSF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1874, 'node', '5GC System Architecture2', 'UPF', 'image-animate-state', 21, -251.745, -30.487, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/upf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UPF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1875, 'node', '5GC System Architecture2', 'UE', 'image', 14, -535.589, -178.622, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mobile.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'UE', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1876, 'node', '5GC System Architecture2', 'PCF', 'image-animate-state', 20, -251.569, -121.754, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/pcf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'PCF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1877, 'node', '5GC System Architecture2', 'SMF', 'image-animate-state', 19, -102.324, -30.9759, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/smf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f0212c"}', 'SMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1878, 'node', '5GC System Architecture2', 'AMF', 'image-animate-state', 18, -252.824, -212.92, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/amf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1879, 'node', '5GC System Architecture2', 'UDM', 'image-animate-state', 17, 30.371, -283.065, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/udm6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UDM', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1880, 'node', '5GC System Architecture2', 'AUSF', 'image-animate-state', 16, -248.56, -291.872, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ausf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AUSF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1881, 'node', '5GC System Architecture2', 'NRF', 'image-animate-state', 15, 31.0121, -130.814, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nrf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NRF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1882, 'node', '5GC System Architecture2', 'LMF', 'image-animate-state', 14, -247.573, 58.3507, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lmf.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'LMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1883, 'node', '5GC System Architecture2', 'NEF', 'image-animate-state', 13, -102.277, -127.481, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nef6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NEF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1884, 'node', '5GC System Architecture2', 'MME', 'image-animate-state', 12, -102.666, -211.515, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mme6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'MME', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1885, 'node', '5GC System Architecture2', 'N3IWF', 'image-animate-state', 11, 32.0232, -36.1257, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/n3iwf61.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'N3IWF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1886, 'edge', '5GC System Architecture2', 'RAN~1704534829539~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N3', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1887, 'edge', '5GC System Architecture2', 'DN~1704534869360~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'DN', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N6', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1888, 'edge', '5GC System Architecture2', 'OMC~1704535021073~5GC', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'OMC', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1889, 'edge', '5GC System Architecture2', 'SMF~1704765447548~UPF', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N4', '{"autoRotate":true,"position":"end","refX":-12,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1890, 'edge', '5GC System Architecture2', '5GC~1704764825481~Base', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'Base', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N2', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1891, 'edge', '5GC System Architecture2', 'UE~1704534736553~AMF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'UE', 'Base', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":1,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (1892, 'combo', '5GC System Architecture2', '5GC', 'rect', 10, -110.01, -117.995, '[40,40]', '', '', '', '', '', '', '', '[40,45,45,40]', '', '[{"comboId":"5GC","depth":12,"id":"IMS","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NSSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UPF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"PCF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"SMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UDM","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AUSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NRF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"LMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NEF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"MME","itemType":"node"},{"comboId":"5GC","depth":12,"id":"N3IWF","itemType":"node"}]', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"grab","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(234, 234, 234)"},"fill":"#318c7d","fillOpacity":0.1,"height":402.691157,"highlight":{"fill":"rgb(253, 253, 253)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(253, 253, 253)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"lineWidth":1,"r":201.3455785,"radius":2,"selected":{"fill":"rgb(253, 253, 253)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff","width":345.628003}', 'Core Network', '{"position":"top","refX":10,"refY":10,"style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2304, 'node', '5GC System Architecture3', 'Base', 'image-animate-state', 0, -371.671, -129.664, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/base.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '(R)AN', '{"offset":-4,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2305, 'node', '5GC System Architecture3', 'DN', 'image-animate-state', 0, 325.54, -71.38, '[80,80]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/earth3d-1.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'DN', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2306, 'node', '5GC System Architecture3', 'OMC', 'image-animate-state', 0, 327.254, -266.76, '[64,64]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/omc6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#783636"}', 'OMC', '{"offset":4,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2307, 'node', '5GC System Architecture3', 'IMS', 'image-animate-state', 24, 40.3237, -119.48, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ims6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f1212c"}', 'IMS', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2308, 'node', '5GC System Architecture3', 'NSSF', 'image-animate-state', 23, 49.2396, -291.854, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nssf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NSSF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2309, 'node', '5GC System Architecture3', 'UPF', 'image-animate-state', 22, -31.0923, -18.3086, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/upf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UPF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2310, 'node', '5GC System Architecture3', 'UE', 'image', 14, -366.589, 0.378, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mobile.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'UE', '{"offset":-10,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2311, 'node', '5GC System Architecture3', 'PCF', 'image-animate-state', 21, 114.148, -293.478, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/pcf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'PCF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2312, 'node', '5GC System Architecture3', 'SMF', 'image-animate-state', 20, -28.5624, -116.024, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/smf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f0212c"}', 'SMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2313, 'node', '5GC System Architecture3', 'AMF', 'image-animate-state', 19, -166.037, -115.898, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/amf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2314, 'node', '5GC System Architecture3', 'UDM', 'image-animate-state', 18, -21.8787, -293.295, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/udm6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UDM', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2315, 'node', '5GC System Architecture3', 'AUSF', 'image-animate-state', 17, -89.9143, -291.872, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ausf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AUSF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2316, 'node', '5GC System Architecture3', 'NRF', 'image-animate-state', 16, 107.349, -117.955, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nrf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NRF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2317, 'node', '5GC System Architecture3', 'LMF', 'image-animate-state', 15, 178.417, -292.559, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lmf.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'LMF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2318, 'node', '5GC System Architecture3', 'NEF', 'image-animate-state', 14, -89.82, -113.764, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nef6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NEF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2319, 'node', '5GC System Architecture3', 'MME', 'image-animate-state', 13, -169.465, -291.82, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mme6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'MME', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2320, 'node', '5GC System Architecture3', 'N3IWF', 'image-animate-state', 12, 178.037, -121.058, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/n3iwf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'N3IWF', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2321, 'node', '5GC System Architecture3', 'lan', 'image-animate-state', 11, 10, -193, '[300,30]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/router3d-3.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '5GC', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#fafafa"}', 'Router', '{"offset":0,"position":"center","style":{"fill":"#2e0b7f","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2322, 'edge', '5GC System Architecture3', 'RAN~1704534829539~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":4,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N3', '{"autoRotate":false,"position":"middle","refX":0,"refY":-15,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2323, 'edge', '5GC System Architecture3', 'DN~1704534869360~UPF', 'cubic-animate-line-dash', 0, 0, 0, '', '', '', '', '', 'UPF', 'DN', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":4,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N6', '{"autoRotate":false,"position":"middle","refX":0,"refY":-8,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2324, 'edge', '5GC System Architecture3', 'OMC~1704535021073~5GC', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'OMC', '5GC', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2325, 'edge', '5GC System Architecture3', 'SMF~1704765447548~UPF', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N4', '{"autoRotate":false,"position":"middle","refX":5,"refY":-4,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2326, 'edge', '5GC System Architecture3', '5GC~1704764825481~Base', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'Base', 'AMF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N2', '{"autoRotate":false,"position":"end","refX":-10,"refY":6,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2327, 'edge', '5GC System Architecture3', 'UE~1704534736553~AMF', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'UE', 'Base', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2328, 'edge', '5GC System Architecture3', 'IMS~1706170983368~lan', 'line', 0, 0, 0, '', '', '', '', '', 'IMS', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2329, 'edge', '5GC System Architecture3', 'NSSF~1706171150530~lan', 'line', 0, 0, 0, '', '', '', '', '', 'NSSF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2330, 'edge', '5GC System Architecture3', 'PCF~1706171215279~lan', 'line', 0, 0, 0, '', '', '', '', '', 'PCF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2331, 'edge', '5GC System Architecture3', 'AMF~1706171248818~lan', 'line', 0, 0, 0, '', '', '', '', '', 'AMF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2332, 'edge', '5GC System Architecture3', 'AUSF~1706171282723~lan', 'line', 0, 0, 0, '', '', '', '', '', 'AUSF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2333, 'edge', '5GC System Architecture3', 'MME~1706173575994~lan', 'line', 0, 0, 0, '', '', '', '', '', 'MME', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2334, 'edge', '5GC System Architecture3', 'NEF~1706173617894~lan', 'line', 0, 0, 0, '', '', '', '', '', 'NEF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2335, 'edge', '5GC System Architecture3', 'SMF~1706173671962~lan', 'line', 0, 0, 0, '', '', '', '', '', 'SMF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2336, 'edge', '5GC System Architecture3', 'UDM~1706173695080~lan', 'line', 0, 0, 0, '', '', '', '', '', 'UDM', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2337, 'edge', '5GC System Architecture3', 'NRF~1706173798165~lan', 'line', 0, 0, 0, '', '', '', '', '', 'NRF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2338, 'edge', '5GC System Architecture3', 'N3IWF~1706173823374~lan', 'line', 0, 0, 0, '', '', '', '', '', 'N3IWF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2339, 'edge', '5GC System Architecture3', 'LMF~1706173845506~lan', 'line', 0, 0, 0, '', '', '', '', '', 'LMF', 'lan', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2340, 'edge', '5GC System Architecture3', 'Base~1706176128676~MME', 'cubic-animate-circle-move', 0, 0, 0, '', '', '', '', '', 'Base', 'MME', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'S1-MME', '{"autoRotate":false,"position":"end","refX":-15,"refY":-35,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (2341, 'combo', '5GC System Architecture3', '5GC', 'rect', 10, 4.47597, -155.893, '[40,40]', '', '', '', '', '', '', '', '[40,40,40,40]', '', '[{"comboId":"5GC","depth":12,"id":"IMS","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NSSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UPF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"PCF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"SMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"UDM","itemType":"node"},{"comboId":"5GC","depth":12,"id":"AUSF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NRF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"LMF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"NEF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"MME","itemType":"node"},{"comboId":"5GC","depth":12,"id":"N3IWF","itemType":"node"},{"comboId":"5GC","depth":12,"id":"lan","itemType":"node"}]', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"grab","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(234, 234, 234)"},"fill":"#318c7d","fillOpacity":0.1,"height":325.169599,"highlight":{"fill":"rgb(253, 253, 253)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(253, 253, 253)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"lineWidth":1,"r":203.94142,"radius":2,"selected":{"fill":"rgb(253, 253, 253)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff","width":407.88284}', 'Core Network', '{"position":"top","refX":10,"refY":10,"style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4366, 'node', '5GC System Architecture', 'Base', 'image-animate-state', 0, -110, -30, '[60,50]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/base.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '(R)AN', '{"offset":-5,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4367, 'node', '5GC System Architecture', 'DN', 'image-animate-state', 0, 240, -30, '[60,60]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/earth3d-1.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'DN', '{"offset":-5,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4368, 'node', '5GC System Architecture', 'OMC', 'image-animate-state', 0, 238.846, -329.519, '[60,60]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/omc62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#783636"}', 'OMC', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4369, 'node', '5GC System Architecture', 'NR', 'image', 0, -153, -27, '[30,30]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lightning1.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', '', '{"offset":0,"position":"center","style":{"fill":"#000000","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4370, 'node', '5GC System Architecture', 'IMS', 'image-animate-state', 11, 170, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ims62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f1212c"}', 'IMS', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4371, 'node', '5GC System Architecture', 'SMSC', 'image-animate-state', 11, 238.918, -139.149, '[50,40]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/smsc.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'SMSC', '{"offset":0,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4372, 'node', '5GC System Architecture', 'NSSF', 'image-animate-state', 12, -110, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nssf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NSSF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4373, 'node', '5GC System Architecture', 'UPF', 'image-animate-state', 13, 30, -30, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/upf6.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UPF', '{"offset":-5,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4374, 'node', '5GC System Architecture', 'PCF', 'image-animate-state', 14, 100, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/pcf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'PCF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4375, 'node', '5GC System Architecture', 'UE', 'image', 14, -201.589, -29.622, '[64,64]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mobile.svg', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'UE', '{"offset":-10,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4376, 'node', '5GC System Architecture', 'SMF', 'image-animate-state', 15, 30, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/smf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f0212c"}', 'SMF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4377, 'node', '5GC System Architecture', 'AMF', 'image-animate-state', 16, -110, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/amf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'AMF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4378, 'node', '5GC System Architecture', 'AUSF', 'image-animate-state', 16, -180, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/ausf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'AUSF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4379, 'node', '5GC System Architecture', 'UDM', 'image-animate-state', 17, -40, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/udm62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'UDM', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4380, 'node', '5GC System Architecture', 'NRF', 'image-animate-state', 19, 100, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nrf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NRF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4381, 'node', '5GC System Architecture', 'LMF', 'image-animate-state', 20, 170, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lmf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'LMF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4382, 'node', '5GC System Architecture', 'NEF', 'image-animate-state', 21, 30, -260, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/nef62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'NEF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4383, 'node', '5GC System Architecture', 'MME', 'image-animate-state', 22, -180, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/mme62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'MME', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4384, 'node', '5GC System Architecture', 'N3IWF', 'image-animate-state', 23, -40, -130, '[60,50]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/n3iwf62.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#f5222d"}', 'N3IWF', '{"offset":-15,"position":"bottom","style":{"fill":"#ffffff","fontSize":14,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4385, 'node', '5GC System Architecture', 'lan7', 'image', 24, 238.892, -195.039, '[70,10]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN7', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4386, 'node', '5GC System Architecture', 'lan1', 'image', 24, -180, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN1', '{"offset":0,"position":"center","style":{"fill":"#f6f4f4","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4387, 'node', '5GC System Architecture', 'lan2', 'image', 24, -110, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"transparent","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'LAN2', '{"offset":0,"position":"center","style":{"fill":"#f8f7f7","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4388, 'node', '5GC System Architecture', 'lan3', 'image', 24, -40, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN3', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4389, 'node', '5GC System Architecture', 'lan4', 'image', 24, 30, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN4', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4390, 'node', '5GC System Architecture', 'lan5', 'image', 24, 100, -195, '[70,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN5', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4391, 'node', '5GC System Architecture', 'lan6', 'image', 24, 170, -195, '[70,10]', '{"height":25,"img":"","offset":20,"show":false,"width":25}', '/svg/lan2.png', '{"height":0,"show":false,"type":"circle","width":0}', '', '', '', '', '', '', '', '{"cursor":"pointer","fill":"transparent","lineWidth":1,"radius":4,"stroke":"#ffffff"}', 'LAN6', '{"offset":0,"position":"center","style":{"fill":"#ffffff","fontSize":10,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4392, 'node', '5GC System Architecture', 'LAN', 'rect', 30, 30.0301, -195.517, '[500,10]', '{"height":25,"img":"/svg/service.svg","offset":20,"show":false,"width":25}', '', '', '', '', '', '', '', '', '', '{"active":{"fill":"rgb(247, 250, 255)","lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"fill":"rgb(250, 250, 250)","lineWidth":1,"stroke":"rgb(224, 224, 224)"},"fill":"#87cefa","highlight":{"fill":"rgb(223, 234, 255)","lineWidth":2,"stroke":"#4572d9","text-shape":{"fontWeight":500}},"inactive":{"fill":"rgb(247, 250, 255)","lineWidth":1,"stroke":"rgb(191, 213, 255)"},"lineWidth":1,"radius":4,"selected":{"fill":"rgb(255, 255, 255)","lineWidth":4,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#87cefa"}', '', '{"offset":0,"position":"center","style":{"fill":"#000000","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4393, 'edge', '5GC System Architecture', 'RAN~1704534829539~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":5,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#7b68ee"}', 'N3', '{"autoRotate":false,"position":"middle","refX":0,"refY":-10,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4394, 'edge', '5GC System Architecture', 'N3IWF~1706496082968~lan6', 'polyline', 0, 0, 0, '', '', '', '', '', 'N3IWF', 'lan3', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4395, 'edge', '5GC System Architecture', 'NEF~1706494552592~lan5', 'line', 0, 0, 0, '', '', '', '', '', 'NEF', 'lan4', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4396, 'edge', '5GC System Architecture', 'LMF~1706495015507~lan6', 'polyline', 0, 0, 0, '', '', '', '', '', 'LMF', 'lan6', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4397, 'edge', '5GC System Architecture', 'OMC~1706495150020~lan7', 'polyline', 0, 0, 0, '', '', '', '', '', 'OMC', 'lan7', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4398, 'edge', '5GC System Architecture', 'AUSF~1706495243932~lan1', 'polyline', 0, 0, 0, '', '', '', '', '', 'AUSF', 'lan1', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4399, 'edge', '5GC System Architecture', 'AMF~1706495271064~lan2', 'polyline', 0, 0, 0, '', '', '', '', '', 'AMF', 'lan2', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4400, 'edge', '5GC System Architecture', 'NRF~1706495715971~lan3', 'polyline', 0, 0, 0, '', '', '', '', '', 'NRF', 'lan5', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4401, 'edge', '5GC System Architecture', 'SMF~1706495739277~lan4', 'polyline', 0, 0, 0, '', '', '', '', '', 'SMF', 'lan4', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4402, 'edge', '5GC System Architecture', 'IMS~1706496047466~lan5', 'polyline', 0, 0, 0, '', '', '', '', '', 'IMS', 'lan6', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4403, 'edge', '5GC System Architecture', 'DN~1704534869360~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'UPF', 'DN', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":5,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#7b68ee"}', 'N6', '{"autoRotate":false,"position":"middle","refX":0,"refY":-10,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4404, 'edge', '5GC System Architecture', 'SMF~1704765447548~UPF', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'SMF', 'UPF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N4', '{"autoRotate":false,"position":"middle","refX":0,"refY":3,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4405, 'edge', '5GC System Architecture', '5GC~1704764825481~Base', 'line-animate-state', 0, 0, 0, '', '', '', '', '', 'Base', 'AMF', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', 'N2', '{"autoRotate":false,"position":"middle","refX":-5,"refY":-2,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4406, 'edge', '5GC System Architecture', 'MME~1706492758830~lan1', 'polyline', 0, 0, 0, '', '', '', '', '', 'MME', 'lan1', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4407, 'edge', '5GC System Architecture', 'UDM~1706493787944~lan2', 'line', 0, 0, 0, '', '', '', '', '', 'UDM', 'lan3', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4408, 'edge', '5GC System Architecture', 'PCF~1706494120334~lan3', 'line', 0, 0, 0, '', '', '', '', '', 'PCF', 'lan5', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4409, 'edge', '5GC System Architecture', 'NSSF~1706494145341~lan4', 'polyline', 0, 0, 0, '', '', '', '', '', 'NSSF', 'lan2', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
INSERT INTO "chart_graph" VALUES (4410, 'edge', '5GC System Architecture', 'SMSC~1728441658350~LAN', 'polyline', 0, 0, 0, '', '', '', '', '', 'SMSC', 'lan7', '', '', '', '', '{"active":{"lineWidth":1,"stroke":"rgb(95, 149, 255)"},"cursor":"pointer","disable":{"lineWidth":1,"stroke":"rgb(245, 245, 245)"},"highlight":{"lineWidth":2,"stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"inactive":{"lineWidth":1,"stroke":"rgb(234, 234, 234)"},"lineWidth":2,"offset":20,"radius":2,"selected":{"lineWidth":2,"shadowBlur":10,"shadowColor":"rgb(95, 149, 255)","stroke":"rgb(95, 149, 255)","text-shape":{"fontWeight":500}},"stroke":"#ffffff"}', '', '{"autoRotate":false,"position":"middle","refX":0,"refY":0,"style":{"fill":"#ffffff","fontSize":12,"fontWeight":500}}');
-- Dump completed on 2024-03-06 17:27:01

View File

@@ -0,0 +1,340 @@
-- ----------------------------
-- Table structure for cm_title
-- ----------------------------
DROP TABLE IF EXISTS "cm_title";
CREATE TABLE "cm_title" (
"id" integer NOT NULL,
"ne_type" text(16),
"object" text(32),
"code" text(32),
"cm_en" text(128),
"cm_cn" text(128),
"description" text(1024),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of cm_title
-- ----------------------------
INSERT INTO "cm_title" VALUES (2800, 'AMF', 'ManagedElement', 'AMFAA01', 'Id', '标识符', '网元标识只在OMC范围内有效');
INSERT INTO "cm_title" VALUES (2801, 'AMF', 'ManagedElement', 'AMFAA02', 'UserLabel', '用户友好名', '网元名称,根据运营商的网元命名规则设定。');
INSERT INTO "cm_title" VALUES (2802, 'AMF', 'ManagedElement', 'AMFAA03', 'VendorName', '厂商名称', '厂商名称');
INSERT INTO "cm_title" VALUES (2803, 'AMF', 'ManagedElement', 'AMFAA04', 'ManagedBy', '管理节点', '管理ManagedElement的ManagementNode对象类的DN值');
INSERT INTO "cm_title" VALUES (2804, 'AMF', 'ManagedElement', 'AMFAA05', 'ManagementIpAddress', '网管接口IP地址列表', '网管接口IP地址列表
如支持IPV4V6IPV4和IPV6都要呈现。');
INSERT INTO "cm_title" VALUES (2805, 'AMF', 'ManagedElement', 'AMFAA06', 'SwVersion', '软件版本', '网元的软件版本');
INSERT INTO "cm_title" VALUES (2806, 'AMF', 'ManagedElement', 'AMFAA07', 'PatchInfo', '补丁信息', '补丁信息,用于表示当前网元加载的补丁名称列表。');
INSERT INTO "cm_title" VALUES (2807, 'AMF', 'ManagedElement', 'AMFAA08', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2808, 'AMF', 'ManagedElement', 'AMFAA09', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2809, 'AMF', 'AmfFunction', 'AMFAB01', 'Id', '标识符', '对象标识只在OMC范围内有效');
INSERT INTO "cm_title" VALUES (2810, 'AMF', 'AmfFunction', 'AMFAB02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2811, 'AMF', 'AmfFunction', 'AMFAB03', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2812, 'AMF', 'AmfFunction', 'AMFAB04', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2813, 'AMF', 'AmfFunction', 'AMFAB05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (2814, 'AMF', 'AmfFunction', 'AMFAB06', 'Fqdn', 'AmfFunction的FQDN', '基于服务化接口的AmfFunction的FQDN,FQDN结构请参见TS23.003.');
INSERT INTO "cm_title" VALUES (2815, 'AMF', 'AmfFunction', 'AMFAB07', 'SbiServiceList', 'AmfFunction的服务列表', 'AmfFunction上所有注册到服务化接口的service列表该列表由每个service的名称组成其中ServiceName参见29.510 Table 6.1.6.3.11-1: Enumeration ServiceName定义');
INSERT INTO "cm_title" VALUES (2816, 'AMF', 'AmfFunction', 'AMFAB08', 'AmfGuamiList', '全球AMF唯一标识列表', '<GUAMI> = <MCC><MNC><AMF Identifier>
<AMF Identifier> = <AMF Region ID><AMF Set ID><AMF Pointer>');
INSERT INTO "cm_title" VALUES (2817, 'AMF', 'AmfFunction', 'AMFAB09', 'SnssaiList', '网络切片列表', 'S-NSSAI的列表S-NSSAI=SST-SD。S-NSSAI的格式按照3GPP规范要求本身32bit前8bit代表SST后24bit代表SD。
此变量为长度为10个字符字符组成方式3个字符标识SST + “-” + 6个字符标识SD
前3个字符为SST对应8bit十进制数直接变为字符串比如数字133->”133”
后6个字符位SD对应的24bit的十六进制数直接变为字符串例如数字FEFA89->”FEFA89”样例供参考133-FEFA89');
INSERT INTO "cm_title" VALUES (2818, 'AMF', 'AmfFunction', 'AMFAB10', 'MaxUser', '最大注册用户数', '当前软硬件配置条件下(如licence限制,AMF最大能够支持的注册用户数。');
INSERT INTO "cm_title" VALUES (2819, 'AMF', 'AmfFunction', 'AMFAB11', 'RelativeCapacity', '相对容量', 'AMF集合内该AMF的相对容量代表了NG-RAN选择AMF的概率。取值为整数[0..255]。');
INSERT INTO "cm_title" VALUES (2820, 'AMF', 'AmfFunction', 'AMFAB12', 'MaxGnbNum', '最大支持基站数', '当前软硬件配置条件下(如licence限制AMF最大可以支持的5G基站数。');
INSERT INTO "cm_title" VALUES (2821, 'AMF', 'EpRpDynN8Amf', 'AMFAC01', 'Id', '标识符', 'N8接口标识');
INSERT INTO "cm_title" VALUES (2822, 'AMF', 'EpRpDynN8Amf', 'AMFAC02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2823, 'AMF', 'EpRpDynN8Amf', 'AMFAC03', 'LocIpAddrList', '本端IP地址列表', '参考点所关联的本端网元的IP地址列表Ipv4或Ipv6的地址格式');
INSERT INTO "cm_title" VALUES (2824, 'AMF', 'EpRpDynN8Amf', 'AMFAC04', 'FarIpSubnetworkList', '远端IP子网列表', '参考点所关联的远端IP子网列表
1.Ipv4:List of Struct{
Subnetworkstring
Mask:string }
若子网仅包含一个IP地址则Subnetwork为该IP地址Mask为255.255.255.255。
若子网地址为0.0.0.0Mask可为任意值通常也取0.0.0.0),代表所有局向。
2.Ipv6:子网+前缀方式,样例供参考:
{(2409:802F:0000:0207:0000:0000:1001:0502,128),(2409:802F:0000:0207:0000:0000:1001:0501,128)}或{(2409:802F:0000:0207::1001:0502,128),(2409:802F:0000:0207::1001:0501,128)}或{(2409:802F:0:207::1001:502,128),(2409:802F:0:207::1001:501,128)}');
INSERT INTO "cm_title" VALUES (2825, 'AMF', 'EpRpDynN11Amf', 'AMFAD01', 'Id', '标识符', 'N11接口标识');
INSERT INTO "cm_title" VALUES (2826, 'AMF', 'EpRpDynN11Amf', 'AMFAD02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2827, 'AMF', 'EpRpDynN11Amf', 'AMFAD03', 'LocIpAddrList', '本端IP地址列表', '参考点所关联的本端网元的IP地址列表Ipv4或Ipv6的地址格式');
INSERT INTO "cm_title" VALUES (2828, 'AMF', 'EpRpDynN11Amf', 'AMFAD04', 'FarIpSubnetworkList', '远端IP子网列表', '参考点所关联的远端IP子网列表
1.Ipv4:List of Struct{
Subnetworkstring
Mask:string }
若子网仅包含一个IP地址则Subnetwork为该IP地址Mask为255.255.255.255。
若子网地址为0.0.0.0Mask可为任意值通常也取0.0.0.0),代表所有局向。
2.Ipv6:子网+前缀方式,样例供参考:
{(2409:802F:0000:0207:0000:0000:1001:0502,128),(2409:802F:0000:0207:0000:0000:1001:0501,128)}或{(2409:802F:0000:0207::1001:0502,128),(2409:802F:0000:0207::1001:0501,128)}或{(2409:802F:0:207::1001:502,128),(2409:802F:0:207::1001:501,128)}');
INSERT INTO "cm_title" VALUES (2829, 'AMF', 'EpRpDynN12Amf', 'AMFAE01', 'Id', '标识符', 'N12接口标识');
INSERT INTO "cm_title" VALUES (2830, 'AMF', 'EpRpDynN12Amf', 'AMFAE02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2831, 'AMF', 'EpRpDynN12Amf', 'AMFAE03', 'LocIpAddrList', '本端IP地址列表', '参考点所关联的本端网元的IP地址列表Ipv4或Ipv6的地址格式');
INSERT INTO "cm_title" VALUES (2832, 'AMF', 'EpRpDynN12Amf', 'AMFAE04', 'FarIpSubnetworkList', '远端IP子网列表', '参考点所关联的远端IP子网列表
1.Ipv4:List of Struct{
Subnetworkstring
Mask:string }
若子网仅包含一个IP地址则Subnetwork为该IP地址Mask为255.255.255.255。
若子网地址为0.0.0.0Mask可为任意值通常也取0.0.0.0),代表所有局向。
2.Ipv6:子网+前缀方式,样例供参考:
{(2409:802F:0000:0207:0000:0000:1001:0502,128),(2409:802F:0000:0207:0000:0000:1001:0501,128)}或{(2409:802F:0000:0207::1001:0502,128),(2409:802F:0000:0207::1001:0501,128)}或{(2409:802F:0:207::1001:502,128),(2409:802F:0:207::1001:501,128)}');
INSERT INTO "cm_title" VALUES (2833, 'AMF', 'IPResource', 'AMFAF01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2834, 'AMF', 'IPResource', 'AMFAF02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (2835, 'AMF', 'IPResource', 'AMFAF03', 'InterfaceType', '接口类型', '包含管理接口和业务接口。枚举值{Mgt,N2,NLs,NLg,N26,Nnrf,N12,N8,N15N22,N14,N11,DnsQry}备注管理接口为Mgt。');
INSERT INTO "cm_title" VALUES (2836, 'AMF', 'IPResource', 'AMFAF04', 'LocIpV4AddrList', '本端IPV4地址列表', '参考点所关联的本端网元的IP地址列表Ipv4地址格式如无IPV4地址填写{Default}。');
INSERT INTO "cm_title" VALUES (2837, 'AMF', 'IPResource', 'AMFAF05', 'LocIpV6AddrList', '本端IPV6地址列表', '参考点所关联的本端网元的IP地址列表Ipv6地址格式如无IPV6地址填写{Default}。');
INSERT INTO "cm_title" VALUES (2838, 'PCF', 'ManagedElement', 'PCFAA01', 'Id', '标识符', '网元标识只在OMC范围内有效');
INSERT INTO "cm_title" VALUES (2839, 'PCF', 'ManagedElement', 'PCFAA02', 'UserLabel', '用户友好名', '网元名称,根据运营商的网元命名规则设定。');
INSERT INTO "cm_title" VALUES (2840, 'PCF', 'ManagedElement', 'PCFAA03', 'VendorName', '厂商名称', '厂商名称');
INSERT INTO "cm_title" VALUES (2841, 'PCF', 'ManagedElement', 'PCFAA04', 'ManagedBy', '管理节点', '管理ManagedElement的ManagementNode对象类的DN值');
INSERT INTO "cm_title" VALUES (2842, 'PCF', 'ManagedElement', 'PCFAA05', 'ManagementIpAddress', '网管接口IP地址列表', '网管接口IP地址列表');
INSERT INTO "cm_title" VALUES (2843, 'PCF', 'ManagedElement', 'PCFAA06', 'SwVersion', '软件版本', '网元的软件版本');
INSERT INTO "cm_title" VALUES (2844, 'PCF', 'ManagedElement', 'PCFAA07', 'PatchInfo', '补丁信息', '补丁信息,用于表示当前网元加载的补丁名称列表。');
INSERT INTO "cm_title" VALUES (2845, 'PCF', 'ManagedElement', 'PCFAA08', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2846, 'PCF', 'ManagedElement', 'PCFAA09', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2847, 'PCF', 'PcfFunction', 'PCFAB01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2848, 'PCF', 'PcfFunction', 'PCFAB02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2849, 'PCF', 'PcfFunction', 'PCFAB03', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2850, 'PCF', 'PcfFunction', 'PCFAB04', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2851, 'PCF', 'PcfFunction', 'PCFAB05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (2852, 'PCF', 'PcfFunction', 'PCFAB05', 'Fqdn', 'PcfFunction的FQDN', '基于服务化接口PcfFunction的FQDNFQDN结构请参见TS23.003.');
INSERT INTO "cm_title" VALUES (2853, 'PCF', 'PcfFunction', 'PCFAB06', 'SbiServiceList', 'PcfFunction的服务列表', 'PcfFunction上所有注册到服务化接口的service列表该列表由每个service的名称组成。其中ServiceName参见29.510 Table 6.1.6.3.11-1: Enumeration ServiceName定义');
INSERT INTO "cm_title" VALUES (2854, 'PCF', 'UdrFunction', 'PCFAC01', 'Id', '标识符', '命名属性');
INSERT INTO "cm_title" VALUES (2855, 'PCF', 'UdrFunction', 'PCFAC02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。 语音PCF不涉及Udr语音PCF对应指标填写PCF的取值。');
INSERT INTO "cm_title" VALUES (2856, 'PCF', 'UdrFunction', 'PCFAC03', 'AdministrativeState', '管理状态', '管理的状态,枚举型 {Locked, Unlocked, ShuttingDown}');
INSERT INTO "cm_title" VALUES (2857, 'PCF', 'UdrFunction', 'PCFAC04', 'OperationalState', '运行状态', '运行的状态,枚举型{Disabled,Enabled}');
INSERT INTO "cm_title" VALUES (2858, 'PCF', 'UdrFunction', 'PCFAC07', 'MaxSubNbr', '最大签约用户数', 'UDR最大能存储的签约用户的个数该值受软硬件条件共同限制如Licence。
语音PCF不涉及Udr语音PCF对应指标填0。');
INSERT INTO "cm_title" VALUES (2859, 'PCF', 'IPResource', 'PCFAD01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2860, 'PCF', 'IPResource', 'PCFAD02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (2861, 'PCF', 'IPResource', 'PCFAD03', 'InterfaceType', '接口类型', '包含管理接口和业务接口(信令和媒体)。枚举型{Mgt,Rx,Gx,N5,N7,N15,N28}备注管理接口为Mgt。');
INSERT INTO "cm_title" VALUES (2862, 'PCF', 'IPResource', 'PCFAD04', 'LocIpV4AddrList', '本端IPV4地址列表', '参考点所关联的本端网元的IP地址列表Ipv4地址格式如无IPV4地址填写{Default}。');
INSERT INTO "cm_title" VALUES (2863, 'PCF', 'IPResource', 'PCFAD05', 'LocIpV6AddrList', '本端IPV6地址列表', '参考点所关联的本端网元的IP地址列表Ipv6地址格式如无IPV6地址填写{Default}。');
INSERT INTO "cm_title" VALUES (2864, 'SMF', 'ManagedElement', 'SMFAA01', 'Id', '标识符', '网元标识只在OMC范围内有效');
INSERT INTO "cm_title" VALUES (2865, 'SMF', 'ManagedElement', 'SMFAA02', 'UserLabel', '用户友好名', '网元名称,根据运营商的网元命名规则设定。');
INSERT INTO "cm_title" VALUES (2866, 'SMF', 'ManagedElement', 'SMFAA03', 'VendorName', '厂商名称', '厂商名称');
INSERT INTO "cm_title" VALUES (2867, 'SMF', 'ManagedElement', 'SMFAA04', 'ManagedBy', '管理节点', '管理ManagedElement的ManagementNode对象类的DN值');
INSERT INTO "cm_title" VALUES (2868, 'SMF', 'ManagedElement', 'SMFAA05', 'ManagementIpAddress', '网管接口IP地址列表', '网管接口IP地址列表
如支持IPV4V6IPV4和IPV6都要呈现。');
INSERT INTO "cm_title" VALUES (2869, 'SMF', 'ManagedElement', 'SMFAA06', 'SwVersion', '软件版本', '网元的软件版本');
INSERT INTO "cm_title" VALUES (2870, 'SMF', 'ManagedElement', 'SMFAA07', 'PatchInfo', '补丁信息', '补丁信息,用于表示当前网元加载的补丁名称列表。');
INSERT INTO "cm_title" VALUES (2871, 'SMF', 'ManagedElement', 'SMFAA08', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2872, 'SMF', 'ManagedElement', 'SMFAA09', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2873, 'SMF', 'SmfFunction', 'SMFAB01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2874, 'SMF', 'SmfFunction', 'SMFAB02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2875, 'SMF', 'SmfFunction', 'SMFAB03', 'AdministrativeState', '管理状态', '管理的状态,枚举型 {Locked, Unlocked, ShuttingDown}');
INSERT INTO "cm_title" VALUES (2876, 'SMF', 'SmfFunction', 'SMFAB04', 'OperationalState', '运行状态', '运行的状态,枚举型{Disabled,Enabled}');
INSERT INTO "cm_title" VALUES (2877, 'SMF', 'SmfFunction', 'SMFAB05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (2878, 'SMF', 'SmfFunction', 'SMFAB06', 'Fqdn', 'SmfFunction的FQDN', '基于服务化接口的SmfFunction的FQDN,FQDN结构请参见TS23.003');
INSERT INTO "cm_title" VALUES (2879, 'SMF', 'SmfFunction', 'SMFAB07', 'SbiServiceList', 'SmfFunction的服务列表', 'SmfFunction上所有注册到服务化接口的service列表该列表由每个service的名称组成服务名称参见29.510 Table 6.1.6.3.11-1: Enumeration ServiceName的定义');
INSERT INTO "cm_title" VALUES (2880, 'SMF', 'SmfFunction', 'SMFAB08', 'MaxPduSessions', '最大PDU会话数', '当前软硬件配置条件下(如licence限制,SMF最大支持的并发PDU Session数。');
INSERT INTO "cm_title" VALUES (2881, 'SMF', 'SmfFunction', 'SMFAB09', 'MaxQfi', '最大QFI数', '当前软硬件配置条件下(如licence限制,SMF最大支持的并发QFI数。');
INSERT INTO "cm_title" VALUES (2882, 'SMF', 'SmfFunction', 'SMFAB10', 'UpfList', 'UPF列表', 'SMF管理的UPF的DN列表');
INSERT INTO "cm_title" VALUES (2883, 'SMF', 'AddrPool', 'SMFAC01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2884, 'SMF', 'AddrPool', 'SMFAC02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2885, 'SMF', 'AddrPool', 'SMFAC03', 'AddrType', '地址类型', '表示地址的类型,枚举 {Dynamic, Static}');
INSERT INTO "cm_title" VALUES (2886, 'SMF', 'AddrPool', 'SMFAC04', 'IpVersion', 'IP版本', '表示地址池的IP的版本包括IPv4,IPv6}');
INSERT INTO "cm_title" VALUES (2887, 'SMF', 'AddrPool', 'SMFAC05', 'AddrSegList', 'IP地址分段列表', '指该地址对象中存储的地址段列表。其中每个地址段包含有一个起始地址IP地址beginIp和该段的IP地址数目来确定List of Struct{
StartIp: String //起始IP地址
SegLen: Integer //地址段长度
}');
INSERT INTO "cm_title" VALUES (2888, 'SMF', 'EpRpDynN7Smf', 'SMFAD01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2889, 'SMF', 'EpRpDynN7Smf', 'SMFAD02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2890, 'SMF', 'EpRpDynN7Smf', 'SMFAD03', 'LocIpAddrList', '本端IP地址列表', '参考点所关联的本端网元的IP地址列表Ipv4或Ipv6的地址格式');
INSERT INTO "cm_title" VALUES (2891, 'SMF', 'EpRpDynN7Smf', 'SMFAD04', 'FarIpSubnetworkList', '远端IP子网列表', '参考点所关联的远端IP子网列表
1.Ipv4:List of Struct{
Subnetworkstring
Mask:string }
若子网仅包含一个IP地址则Subnetwork为该IP地址Mask为255.255.255.255。
若子网地址为0.0.0.0Mask可为任意值通常也取0.0.0.0),代表所有局向。
2.Ipv6:子网+前缀方式,样例供参考:
{(2409:802F:0000:0207:0000:0000:1001:0502,128),(2409:802F:0000:0207:0000:0000:1001:0501,128)}或{(2409:802F:0000:0207::1001:0502,128),(2409:802F:0000:0207::1001:0501,128)}或{(2409:802F:0:207::1001:502,128),(2409:802F:0:207::1001:501,128)}');
INSERT INTO "cm_title" VALUES (2892, 'SMF', 'EpRpDynN10Smf', 'SMFAE01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2893, 'SMF', 'EpRpDynN10Smf', 'SMFAE02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2894, 'SMF', 'EpRpDynN10Smf', 'SMFAE03', 'LocIpAddrList', '本端IP地址列表', '参考点所关联的本端网元的IP地址列表Ipv4或Ipv6的地址格式');
INSERT INTO "cm_title" VALUES (2895, 'SMF', 'EpRpDynN10Smf', 'SMFAE04', 'FarIpSubnetworkList', '远端IP子网列表', '参考点所关联的远端IP子网列表
1.Ipv4:List of Struct{
Subnetworkstring
Mask:string }
若子网仅包含一个IP地址则Subnetwork为该IP地址Mask为255.255.255.255。
若子网地址为0.0.0.0Mask可为任意值通常也取0.0.0.0),代表所有局向。
2.Ipv6:子网+前缀方式,样例供参考:
{(2409:802F:0000:0207:0000:0000:1001:0502,128),(2409:802F:0000:0207:0000:0000:1001:0501,128)}或{(2409:802F:0000:0207::1001:0502,128),(2409:802F:0000:0207::1001:0501,128)}或{(2409:802F:0:207::1001:502,128),(2409:802F:0:207::1001:501,128)}');
INSERT INTO "cm_title" VALUES (2896, 'SMF', 'IPResource', 'SMFAF01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2897, 'SMF', 'IPResource', 'SMFAF02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (2898, 'SMF', 'IPResource', 'SMFAF03', 'InterfaceType', '接口类型', '包含管理接口和业务接口。枚举值{Mgt,N4,Nnrf,N10,N7,N16a,Nbsf,N11,N40,Radius}备注管理接口为Mgt。');
INSERT INTO "cm_title" VALUES (2899, 'SMF', 'IPResource', 'SMFAF04', 'LocIpV4AddrList', '本端IPV4地址列表', '参考点所关联的本端网元的IP地址列表Ipv4地址格式如无IPV4地址填写{Default}。');
INSERT INTO "cm_title" VALUES (2900, 'SMF', 'IPResource', 'SMFAF05', 'LocIpV6AddrList', '本端IPV6地址列表', '参考点所关联的本端网元的IP地址列表Ipv6地址格式如无IPV6地址填写{Default}。');
INSERT INTO "cm_title" VALUES (2901, 'UDM', 'ManagedElement', 'UDMAA01', 'Id', '标识符', '网元标识只在OMC范围内有效');
INSERT INTO "cm_title" VALUES (2902, 'UDM', 'ManagedElement', 'UDMAA02', 'UserLabel', '用户友好名', '网元名称,根据运营商的网元命名规则设定。');
INSERT INTO "cm_title" VALUES (2903, 'UDM', 'ManagedElement', 'UDMAA03', 'VendorName', '厂商名称', '厂商名称');
INSERT INTO "cm_title" VALUES (2904, 'UDM', 'ManagedElement', 'UDMAA04', 'ManagedBy', '管理节点', '管理ManagedElement的ManagementNode对象类的DN值');
INSERT INTO "cm_title" VALUES (2905, 'UDM', 'ManagedElement', 'UDMAA05', 'ManagementIpAddress', '网管接口IP地址列表', '网管接口IP地址列表
如支持IPV4V6IPV4和IPV6都要呈现');
INSERT INTO "cm_title" VALUES (2906, 'UDM', 'ManagedElement', 'UDMAA06', 'SwVersion', '软件版本', '网元的软件版本');
INSERT INTO "cm_title" VALUES (2907, 'UDM', 'ManagedElement', 'UDMAA07', 'PatchInfo', '补丁信息', '补丁信息,用于表示当前网元加载的补丁名称列表。');
INSERT INTO "cm_title" VALUES (2908, 'UDM', 'ManagedElement', 'UDMAA08', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2909, 'UDM', 'ManagedElement', 'UDMAA09', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2910, 'UDM', 'UdmFunction', 'UDMAB01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2911, 'UDM', 'UdmFunction', 'UDMAB02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2912, 'UDM', 'UdmFunction', 'UDMAB03', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2913, 'UDM', 'UdmFunction', 'UDMAB04', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2914, 'UDM', 'UdmFunction', 'UDMAB05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (2915, 'UDM', 'UdmFunction', 'UDMAB06', 'Fqdn', 'UdmFunction的FQDN', '基于服务化接口的UdmFunction的FQDNFQDN结构请参见TS23.003.');
INSERT INTO "cm_title" VALUES (2916, 'UDM', 'UdmFunction', 'UDMAB07', 'SbiServiceList', 'UdmFunction的服务列表', 'UdmFunction上所有注册到服务化接口的service列表该列表由每个service的名称组成。其中ServiceName参见29.510 Table 6.1.6.3.11-1: Enumeration ServiceName定义');
INSERT INTO "cm_title" VALUES (2917, 'UDM', 'UdrFunction', 'UDRAC01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2918, 'UDM', 'UdrFunction', 'UDRAC02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2919, 'UDM', 'UdrFunction', 'UDRAC03', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2920, 'UDM', 'UdrFunction', 'UDRAC04', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2921, 'UDM', 'UdrFunction', 'UDRAC05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (2922, 'UDM', 'UdrFunction', 'UDRAC06', 'Fqdn', 'UdrFunction的FQDN', '基于服务化接口的UdrFunction的FQDN,FQDN结构请参见TS23.003。');
INSERT INTO "cm_title" VALUES (2923, 'UDM', 'UdrFunction', 'UDRAC07', 'SbiServiceList', 'UdrFunction的服务列表', 'UdrFunction上所有注册到服务化接口的service列表该列表由每个service的名称组成。其中ServiceName参见29.510 Table 6.1.6.3.11-1: Enumeration ServiceName定义。');
INSERT INTO "cm_title" VALUES (2924, 'UDM', 'UdrFunction', 'UDRAC08', 'MaxNumSupi', '最大可存储的SUPI个数', '指UDR设计的可存储的最大SUPI数量');
INSERT INTO "cm_title" VALUES (2925, 'UDM', 'UdrFunction', 'UDRAC09', 'MaxNumMsisdn', '最大可存储的MSISDN个数', '指UDR设计的最大可存储的MSISDN个数');
INSERT INTO "cm_title" VALUES (2926, 'UDM', 'AusfFunction', 'UDMAD01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2927, 'UDM', 'AusfFunction', 'UDMAD02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (2928, 'UDM', 'AusfFunction', 'UDMAD03', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2929, 'UDM', 'AusfFunction', 'UDMAD04', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2930, 'UDM', 'AusfFunction', 'UDMAD05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (2931, 'UDM', 'AusfFunction', 'UDMAD06', 'Fqdn', 'AusfFunction的FQDN', '基于服务化接口的AusfFunction的FQDN,FQDN结构请参见TS23.003。');
INSERT INTO "cm_title" VALUES (2932, 'UDM', 'AusfFunction', 'UDMAD07', 'SbiServiceList', 'AusfFunction的服务列表', 'AusfFunction上所有注册到服务化接口的service列表该列表由每个service的名称组成。其中ServiceName参见29.510 Table 6.1.6.3.11-1: Enumeration ServiceName定义。');
INSERT INTO "cm_title" VALUES (2933, 'UDM', 'IPResource', 'UDMAE01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2934, 'UDM', 'IPResource', 'UDMAE02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (2935, 'UDM', 'IPResource', 'UDMAE03', 'InterfaceType', '接口类型', '包含管理接口和业务接口。枚举型{Mgt,N8,N10,N12,N21}备注管理接口为Mgt。');
INSERT INTO "cm_title" VALUES (2936, 'UDM', 'IPResource', 'UDMAE04', 'LocIpV4AddrList', '本端IPV4地址列表', '参考点所关联的本端网元的IP地址列表Ipv4地址格式如无IPV4地址填写{Default}。');
INSERT INTO "cm_title" VALUES (2937, 'UDM', 'IPResource', 'UDMAE05', 'LocIpV6AddrList', '本端IPV6地址列表', '参考点所关联的本端网元的IP地址列表Ipv6地址格式如无IPV6地址填写{Default}。');
INSERT INTO "cm_title" VALUES (2938, 'UPF', 'ManagedElement', 'UPFAA01', 'Id', '标识符', '网元标识只在OMC范围内有效');
INSERT INTO "cm_title" VALUES (2939, 'UPF', 'ManagedElement', 'UPFAA02', 'UserLabel', '用户友好名', '网元名称,根据运营商的网元命名规则设定。');
INSERT INTO "cm_title" VALUES (2940, 'UPF', 'ManagedElement', 'UPFAA03', 'VendorName', '厂商名称', '厂商名称');
INSERT INTO "cm_title" VALUES (2941, 'UPF', 'ManagedElement', 'UPFAA04', 'ManagedBy', '管理节点', '管理ManagedElement的ManagementNode对象类的DN值');
INSERT INTO "cm_title" VALUES (2942, 'UPF', 'ManagedElement', 'UPFAA05', 'ManagementIpAddress', '网管接口IP地址列表', '网管接口IP地址列表
如支持IPV4V6IPV4和IPV6都要呈现');
INSERT INTO "cm_title" VALUES (2943, 'UPF', 'ManagedElement', 'UPFAA06', 'SwVersion', '软件版本', '网元的软件版本');
INSERT INTO "cm_title" VALUES (2944, 'UPF', 'ManagedElement', 'UPFAA07', 'PatchInfo', '补丁信息', '补丁信息,用于表示当前网元加载的补丁名称列表。');
INSERT INTO "cm_title" VALUES (2945, 'UPF', 'ManagedElement', 'UPFAA08', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (2946, 'UPF', 'ManagedElement', 'UPFAA09', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (2947, 'UPF', 'ManagedElement', 'UPFAA10', 'LocationName', '位置名称', '如指明该设备所处的具体房间');
INSERT INTO "cm_title" VALUES (2948, 'UPF', 'ManagedElement', 'UPFAA11', 'HardwarePlatform', '硬件平台', '硬件平台');
INSERT INTO "cm_title" VALUES (2949, 'UPF', 'InventoryUnitRack', 'UPFAB01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2950, 'UPF', 'InventoryUnitRack', 'UPFAB02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (2951, 'UPF', 'InventoryUnitRack', 'UPFAB03', 'VendorUnitFamilyType', '归属类型', '由供应商提供的便于记忆的资产单元的归属类型');
INSERT INTO "cm_title" VALUES (2952, 'UPF', 'InventoryUnitRack', 'UPFAB04', 'VendorUnitTypeNumber', '资产单元类型版本号', '由供应商提供的可唯一识别资产单元类型及版本的号码');
INSERT INTO "cm_title" VALUES (2953, 'UPF', 'InventoryUnitRack', 'UPFAB05', 'VendorName', '供应商名称', '供应商名称');
INSERT INTO "cm_title" VALUES (2954, 'UPF', 'InventoryUnitRack', 'UPFAB06', 'SerialNumber', '资产序列号', '资产序列号');
INSERT INTO "cm_title" VALUES (2955, 'UPF', 'InventoryUnitRack', 'UPFAB07', 'VersionNumber', '资产版本号', '与VendorUnitTypeNumber相关的版本信息');
INSERT INTO "cm_title" VALUES (2956, 'UPF', 'InventoryUnitRack', 'UPFAB08', 'DateOfManufacture', '生产日期', '生产日期');
INSERT INTO "cm_title" VALUES (2957, 'UPF', 'InventoryUnitRack', 'UPFAB09', 'DateOfLastService', '最近服务日期', '最近服务的日期(最近一次恢复工作正常状态的时间)');
INSERT INTO "cm_title" VALUES (2958, 'UPF', 'InventoryUnitRack', 'UPFAB10', 'ManufacturerData', '特殊信息', '设备商填写的特殊信息');
INSERT INTO "cm_title" VALUES (2959, 'UPF', 'InventoryUnitRack', 'UPFAB11', 'RackPosition', '机架位置', '机架编号,通常有两种表示方法:
1 行号-机架号:即该机架位于第几行的第几个。在这种情况下,机房内的机架先按行区分,机架号表示在行内的相对位置。
2 机架号:即机房内的机架统一编号,不用行来区分。');
INSERT INTO "cm_title" VALUES (2960, 'UPF', 'InventoryUnitShelf', 'UPFAC01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2961, 'UPF', 'InventoryUnitShelf', 'UPFAC02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (2962, 'UPF', 'InventoryUnitShelf', 'UPFAC03', 'VendorUnitFamilyType', '归属类型', '由供应商提供的便于记忆的资产单元的归属类型');
INSERT INTO "cm_title" VALUES (2963, 'UPF', 'InventoryUnitShelf', 'UPFAC04', 'VendorUnitTypeNumber', '资产单元类型版本号', '由供应商提供的可唯一识别资产单元类型及版本的号码');
INSERT INTO "cm_title" VALUES (2964, 'UPF', 'InventoryUnitShelf', 'UPFAC05', 'VendorName', '供应商名称', '供应商名称');
INSERT INTO "cm_title" VALUES (2965, 'UPF', 'InventoryUnitShelf', 'UPFAC06', 'SerialNumber', '资产序列号', '资产序列号');
INSERT INTO "cm_title" VALUES (2966, 'UPF', 'InventoryUnitShelf', 'UPFAC07', 'VersionNumber', '资产版本号', '与VendorUnitTypeNumber相关的版本信息');
INSERT INTO "cm_title" VALUES (2967, 'UPF', 'InventoryUnitShelf', 'UPFAC08', 'DateOfManufacture', '生产日期', '生产日期');
INSERT INTO "cm_title" VALUES (2968, 'UPF', 'InventoryUnitShelf', 'UPFAC09', 'DateOfLastService', '最近服务日期', '最近服务的日期(最近一次恢复工作正常状态的时间)');
INSERT INTO "cm_title" VALUES (2969, 'UPF', 'InventoryUnitShelf', 'UPFAC10', 'ManufacturerData', '特殊信息', '设备商填写的特殊信息');
INSERT INTO "cm_title" VALUES (2970, 'UPF', 'InventoryUnitShelf', 'UPFAC11', 'SlotsInformation', '插槽信息', '框内所有插槽、描述及占用状态。List of Struct{槽位号(字符串),描述(字符串),占用状态(枚举)}。其中其中描述信息由厂家自行决定,占用状态为枚举{Unused,Used}');
INSERT INTO "cm_title" VALUES (2971, 'UPF', 'InventoryUnitShelf', 'UPFAC12', 'ShelfPosition', '机框位置', '1) 如果机框位于的机架也可以通过OMC进行管理则“机框位置”的形式应为机框在机架内的相对位置
2如果机框位于第三方机架内即机架不可以通过OMC管理机框位置的形式应为“机架号-机框在机架内的相对位置”');
INSERT INTO "cm_title" VALUES (2972, 'UPF', 'InventoryUnitPack', 'UPFAD01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2973, 'UPF', 'InventoryUnitPack', 'UPFAD02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (2974, 'UPF', 'InventoryUnitPack', 'UPFAD03', 'VendorUnitFamilyType', '归属类型', '由供应商提供的便于记忆的资产单元的归属类型');
INSERT INTO "cm_title" VALUES (2975, 'UPF', 'InventoryUnitPack', 'UPFAD04', 'VendorUnitTypeNumber', '资产单元类型版本号', '由供应商提供的可唯一识别资产单元类型及版本的号码');
INSERT INTO "cm_title" VALUES (2976, 'UPF', 'InventoryUnitPack', 'UPFAD05', 'VendorName', '供应商名称', '供应商名称');
INSERT INTO "cm_title" VALUES (2977, 'UPF', 'InventoryUnitPack', 'UPFAD06', 'SerialNumber', '资产序列号', '资产序列号');
INSERT INTO "cm_title" VALUES (2978, 'UPF', 'InventoryUnitPack', 'UPFAD07', 'VersionNumber', '资产版本号', '与VendorUnitTypeNumber相关的版本信息');
INSERT INTO "cm_title" VALUES (2979, 'UPF', 'InventoryUnitPack', 'UPFAD08', 'DateOfManufacture', '生产日期', '生产日期');
INSERT INTO "cm_title" VALUES (2980, 'UPF', 'InventoryUnitPack', 'UPFAD09', 'DateOfLastService', '最近服务日期', '最近服务的日期(最近一次恢复工作正常状态的时间)');
INSERT INTO "cm_title" VALUES (2981, 'UPF', 'InventoryUnitPack', 'UPFAD10', 'ManufacturerData', '特殊信息', '设备商填写的特殊信息');
INSERT INTO "cm_title" VALUES (2982, 'UPF', 'InventoryUnitPack', 'UPFAD11', 'PortsInformation', '端口信息', '单板包含的所有端口、描述及占用状态。List of Struct{ 端口Id(字符串),描述(字符串),占用状态(枚举)}。其中占用状态的取值为{Unused,Used},描述信息由设备厂家自行决定。');
INSERT INTO "cm_title" VALUES (2983, 'UPF', 'InventoryUnitPack', 'UPFAD12', 'PackPosition', '板卡位置', '板卡在机框内的相对位置,通常用编号表示。');
INSERT INTO "cm_title" VALUES (2984, 'UPF', 'InventoryUnitPack', 'UPFAD13', 'SlotsOccupied', '占用槽位', '应表示板卡占用的槽位号列表。(注:一些板卡较宽,可能会占用两个或以上槽位)');
INSERT INTO "cm_title" VALUES (2985, 'UPF', 'InventoryUnitHost', 'PGWAE01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (2986, 'UPF', 'InventoryUnitHost', 'PGWAE02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (2987, 'UPF', 'InventoryUnitHost', 'PGWAE03', 'VendorUnitFamilyType', '归属类型', '由供应商提供的便于记忆的资产单元的归属类型');
INSERT INTO "cm_title" VALUES (2988, 'UPF', 'InventoryUnitHost', 'PGWAE04', 'VendorUnitTypeNumber', '资产单元类型版本号', '由供应商提供的可唯一识别资产单元类型及版本的号码');
INSERT INTO "cm_title" VALUES (2989, 'UPF', 'InventoryUnitHost', 'PGWAE05', 'VendorName', '供应商名称', '供应商名称');
INSERT INTO "cm_title" VALUES (2990, 'UPF', 'InventoryUnitHost', 'PGWAE06', 'SerialNumber', '资产序列号', '资产序列号');
INSERT INTO "cm_title" VALUES (2991, 'UPF', 'InventoryUnitHost', 'PGWAE07', 'VersionNumber', '资产版本号', '与VendorUnitTypeNumber相关的版本信息');
INSERT INTO "cm_title" VALUES (2992, 'UPF', 'InventoryUnitHost', 'PGWAE08', 'DateOfManufacture', '生产日期', '生产日期');
INSERT INTO "cm_title" VALUES (2993, 'UPF', 'InventoryUnitHost', 'PGWAE09', 'DateOfLastService', '最近服务日期', '最近服务的日期(最近一次恢复工作正常状态的时间)');
INSERT INTO "cm_title" VALUES (2994, 'UPF', 'InventoryUnitHost', 'PGWAE10', 'ManufacturerData', '特殊信息', '设备商填写的特殊信息');
INSERT INTO "cm_title" VALUES (2995, 'UPF', 'InventoryUnitHost', 'PGWAE11', 'HostPosition', '主机位置', '主机在机房中的位置,当主机位于机架中时,为机架编号;否则主机应有自己独立的机房位置信息。 ');
INSERT INTO "cm_title" VALUES (2996, 'UPF', 'InventoryUnitHost', 'PGWAE12', 'NumberOfCpu', 'CPU数量', '主机配置的CPU数量');
INSERT INTO "cm_title" VALUES (2997, 'UPF', 'InventoryUnitHost', 'PGWAE13', 'MemSize', '内存容量', '主机配置的内存容量');
INSERT INTO "cm_title" VALUES (2998, 'UPF', 'InventoryUnitHost', 'PGWAE14', 'HardDiskSize', '硬盘容量', '主机配置的硬盘容量');
INSERT INTO "cm_title" VALUES (2999, 'UPF', 'InventoryUnitAccessory', 'UPFAF01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (3000, 'UPF', 'InventoryUnitAccessory', 'UPFAF02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (3001, 'UPF', 'InventoryUnitAccessory', 'UPFAF03', 'VendorUnitFamilyType', '归属类型', '由供应商提供的便于记忆的资产单元的归属类型');
INSERT INTO "cm_title" VALUES (3002, 'UPF', 'InventoryUnitAccessory', 'UPFAF04', 'VendorUnitTypeNumber', '资产单元类型版本号', '由供应商提供的可唯一识别资产单元类型及版本的号码');
INSERT INTO "cm_title" VALUES (3003, 'UPF', 'InventoryUnitAccessory', 'UPFAF05', 'VendorName', '供应商名称', '供应商名称');
INSERT INTO "cm_title" VALUES (3004, 'UPF', 'InventoryUnitAccessory', 'UPFAF06', 'SerialNumber', '资产序列号', '资产序列号');
INSERT INTO "cm_title" VALUES (3005, 'UPF', 'InventoryUnitAccessory', 'UPFAF07', 'VersionNumber', '资产版本号', '与VendorUnitTypeNumber相关的版本信息');
INSERT INTO "cm_title" VALUES (3006, 'UPF', 'InventoryUnitAccessory', 'UPFAF08', 'DateOfManufacture', '生产日期', '生产日期');
INSERT INTO "cm_title" VALUES (3007, 'UPF', 'InventoryUnitAccessory', 'UPFAF09', 'DateOfLastService', '最近服务日期', '最近服务的日期(最近一次恢复工作正常状态的时间)');
INSERT INTO "cm_title" VALUES (3008, 'UPF', 'InventoryUnitAccessory', 'UPFAF10', 'ManufacturerData', '特殊信息', '设备商填写的特殊信息');
INSERT INTO "cm_title" VALUES (3009, 'UPF', 'InventoryUnitAccessory', 'UPFAF11', 'AccessoryPosition', '附件位置', '附件所在机架的编号');
INSERT INTO "cm_title" VALUES (3010, 'UPF', 'InventoryUnitAccessory', 'UPFAF12', 'AccessoryType', '附属设备类型', '自定义,例如:内部交换机,路由器,磁盘阵列等,仅适用于ManagedElement内部的附属设备。');
INSERT INTO "cm_title" VALUES (3011, 'UPF', 'InventoryUnitAccessory', 'UPFAF13', 'AddtionalInformation', '描述信息', '设备自身特有的属性描述');
INSERT INTO "cm_title" VALUES (3012, 'UPF', 'UpfFunction', 'UPFAG01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (3013, 'UPF', 'UpfFunction', 'UPFAG02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (3014, 'UPF', 'UpfFunction', 'UPFAG03', 'AdministrativeState', '管理状态', '管理的状态,枚举型 {Locked, Unlocked, ShuttingDown}');
INSERT INTO "cm_title" VALUES (3015, 'UPF', 'UpfFunction', 'UPFAG04', 'OperationalState', '运行状态', '运行的状态,枚举型{Disabled,Enabled}');
INSERT INTO "cm_title" VALUES (3016, 'UPF', 'UpfFunction', 'UPFAG05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (3017, 'UPF', 'UpfFunction', 'UPFAG06', 'MaxQosFlows', '最大QoS流数', '当前软硬件配置条件下(如licence限制,UPF最大支持的并发QoS流数。');
INSERT INTO "cm_title" VALUES (3018, 'UPF', 'UpfFunction', 'UPFAG07', 'MaxThroughput', '最大数据吞吐率', 'UPF最大每秒能处理的数据量包括双向流量。');
INSERT INTO "cm_title" VALUES (3019, 'UPF', 'EpRpDynN9Upf', 'UPFAH01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (3020, 'UPF', 'EpRpDynN9Upf', 'UPFAH02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (3021, 'UPF', 'EpRpDynN9Upf', 'UPFAH03', 'LocIpAddrList', '本端IP地址列表', '参考点所关联的本端网元的IP地址列表Ipv4或Ipv6的地址格式');
INSERT INTO "cm_title" VALUES (3022, 'UPF', 'EpRpDynN9Upf', 'UPFAH04', 'FarIpSubnetworkList', '远端IP子网列表', '参考点所关联的远端IP子网列表
1.Ipv4:List of Struct{
Subnetworkstring
Mask:string }
若子网仅包含一个IP地址则Subnetwork为该IP地址Mask为255.255.255.255。
若子网地址为0.0.0.0Mask可为任意值通常也取0.0.0.0),代表所有局向。
2.Ipv6:子网+前缀方式,样例供参考:
{(2409:802F:0000:0207:0000:0000:1001:0502,128),(2409:802F:0000:0207:0000:0000:1001:0501,128)}或{(2409:802F:0000:0207::1001:0502,128),(2409:802F:0000:0207::1001:0501,128)}或{(2409:802F:0:207::1001:502,128),(2409:802F:0:207::1001:501,128)}');
INSERT INTO "cm_title" VALUES (3023, 'UPF', 'EpRpDynN3Upf', 'UPFAI01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (3024, 'UPF', 'EpRpDynN3Upf', 'UPFAI02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (3025, 'UPF', 'EpRpDynN3Upf', 'UPFAI03', 'LocIpAddrList', '本端IP地址列表', '参考点所关联的本端网元的IP地址列表Ipv4或Ipv6的地址格式');
INSERT INTO "cm_title" VALUES (3026, 'UPF', 'EpRpDynN3Upf', 'UPFAI04', 'FarIpSubnetworkList', '远端IP子网列表', '参考点所关联的远端IP子网列表
1.Ipv4:List of Struct{
Subnetworkstring
Mask:string }
若子网仅包含一个IP地址则Subnetwork为该IP地址Mask为255.255.255.255。
若子网地址为0.0.0.0Mask可为任意值通常也取0.0.0.0),代表所有局向。
2.Ipv6:子网+前缀方式,样例供参考:
{(2409:802F:0000:0207:0000:0000:1001:0502,128),(2409:802F:0000:0207:0000:0000:1001:0501,128)}或{(2409:802F:0000:0207::1001:0502,128),(2409:802F:0000:0207::1001:0501,128)}或{(2409:802F:0:207::1001:502,128),(2409:802F:0:207::1001:501,128)}');
INSERT INTO "cm_title" VALUES (3027, 'UPF', 'AmfFunction', 'UPFAJ01', 'Id', '标识符', '对象标识只在OMC范围内有效');
INSERT INTO "cm_title" VALUES (3028, 'UPF', 'AmfFunction', 'UPFAJ02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (3029, 'UPF', 'AmfFunction', 'UPFAJ03', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (3030, 'UPF', 'AmfFunction', 'UPFAJ04', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (3031, 'UPF', 'AmfFunction', 'UPFAJ05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (3032, 'UPF', 'AmfFunction', 'UPFAJ06', 'Fqdn', 'AmfFunction的FQDN', '基于服务化接口的AmfFunction的FQDN,FQDN结构请参见TS23.003.');
INSERT INTO "cm_title" VALUES (3033, 'UPF', 'SmfFunction', 'UPFAK01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (3034, 'UPF', 'SmfFunction', 'UPFAK02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (3035, 'UPF', 'SmfFunction', 'UPFAK03', 'AdministrativeState', '管理状态', '管理的状态,枚举型 {Locked, Unlocked, ShuttingDown}');
INSERT INTO "cm_title" VALUES (3036, 'UPF', 'SmfFunction', 'UPFAK04', 'OperationalState', '运行状态', '运行的状态,枚举型{Disabled,Enabled}');
INSERT INTO "cm_title" VALUES (3037, 'UPF', 'SmfFunction', 'UPFAK05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (3038, 'UPF', 'SmfFunction', 'UPFAK06', 'Fqdn', 'SmfFunction的FQDN', '基于服务化接口的SmfFunction的FQDN,FQDN结构请参见TS23.003');
INSERT INTO "cm_title" VALUES (3039, 'UPF', 'UdrFunction', 'UPFAL01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (3040, 'UPF', 'UdrFunction', 'UPFAL02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (3041, 'UPF', 'UdrFunction', 'UPFAL03', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (3042, 'UPF', 'UdrFunction', 'UPFAL04', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (3043, 'UPF', 'UdrFunction', 'UPFAL05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (3044, 'UPF', 'UdrFunction', 'UPFAL06', 'Fqdn', 'UdrFunction的FQDN', '基于服务化接口的UdrFunction的FQDN,FQDN结构请参见TS23.003。');
INSERT INTO "cm_title" VALUES (3045, 'UPF', 'AusfFunction', 'UDMAM01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (3046, 'UPF', 'AusfFunction', 'UDMAM02', 'UserLabel', '用户友好名', '对象名称');
INSERT INTO "cm_title" VALUES (3047, 'UPF', 'AusfFunction', 'UDMAM03', 'AdministrativeState', '管理状态', '管理的状态,取值范围为{LockedUnlockedShuttingDown}');
INSERT INTO "cm_title" VALUES (3048, 'UPF', 'AusfFunction', 'UDMAM04', 'OperationalState', '运行状态', '运行的状态,取值范围为{Disabled, Enabled}');
INSERT INTO "cm_title" VALUES (3049, 'UPF', 'AusfFunction', 'UDMAM05', 'VnfInstanceId', '虚拟化实例标识', '虚拟网元的InstanceId');
INSERT INTO "cm_title" VALUES (3050, 'UPF', 'AusfFunction', 'UDMAM06', 'Fqdn', 'AusfFunction的FQDN', '基于服务化接口的AusfFunction的FQDN,FQDN结构请参见TS23.003。');
INSERT INTO "cm_title" VALUES (3051, 'UPF', 'IPResource', 'UPFAN01', 'Id', '标识符', '命名属性 ');
INSERT INTO "cm_title" VALUES (3052, 'UPF', 'IPResource', 'UPFAN02', 'UserLabel', '用户友好名', '用户友好名由EMS厂商自己指定做为其内部标识并可被NMS修改。');
INSERT INTO "cm_title" VALUES (3053, 'UPF', 'IPResource', 'UPFAN03', 'InterfaceType', '接口类型', '包含管理接口和业务接口(信令和媒体)。枚举值{Mgt,N4,N3,N9,N19}备注管理接口为Mgt。');
INSERT INTO "cm_title" VALUES (3054, 'UPF', 'IPResource', 'UPFAN04', 'LocIpV4AddrList', '本端IPV4地址列表', '参考点所关联的本端网元的IP地址列表Ipv4地址格式如无IPV4地址填写{Default}。');
INSERT INTO "cm_title" VALUES (3055, 'UPF', 'IPResource', 'UPFAN05', 'LocIpV6AddrList', '本端IPV6地址列表', '参考点所关联的本端网元的IP地址列表Ipv6地址格式如无IPV6地址填写{Default}。');
-- Dump completed on 2024-03-06 17:27:01

View File

@@ -0,0 +1,62 @@
-- ----------------------------
-- Table structure for config
-- ----------------------------
DROP TABLE IF EXISTS "config";
CREATE TABLE "config" (
"id" integer NOT NULL,
"module_name" text(32) NOT NULL,
"config_tag" text(32) NOT NULL,
"title_json" text,
"value" text(255),
"value_json" text,
"update_time" text,
"comment" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table config
-- ----------------------------
CREATE UNIQUE INDEX "idx_uni_mod_tag"
ON "config" (
"module_name" ASC,
"config_tag" ASC
);
-- ----------------------------
-- Records of config
-- ----------------------------
INSERT INTO "config" VALUES (1, 'Alarm', 'historyDuration', '{"cn": "历史告警保留时间间隔(天)", "en": "History alarm duration(day)"}', '90', NULL, '2023-07-25 20:41:18', NULL);
INSERT INTO "config" VALUES (2, 'LOG', 'logDuration', '{"cn": "日志保留时间(天)", "en": "Log saved duration(day)"}', '90', NULL, '2023-05-08 17:40:28', NULL);
INSERT INTO "config" VALUES (3, 'LOG', 'logCapacity', '{"cn": "日志占用空间(MB)", "en": "Log occupation space(MB)"}', '1344', NULL, '2023-08-02 17:20:39', NULL);
INSERT INTO "config" VALUES (4, 'PM', 'pmBackupTask', '{"cn": "性能数据报表定期备份(天)", "en": "PM data backup task(day)"}', '', NULL, '2023-09-08 13:59:09', NULL);
INSERT INTO "config" VALUES (5, 'Alarm', 'syncTaskPeriod', '{"cn": "告警同步周期时长(小时)", "en": "Alarm sync task period(小时)"}', '24', '{"alarmEnd":"2023-08-21 00:00:00","alarmStart":"2023-08-08 00:00:00","syncTaskPeriod":"23","unit":"hour"}', '2023-08-10 20:03:38', NULL);
INSERT INTO "config" VALUES (6, 'Alarm', 'displayFilter', '{"cn": "告警显示过滤设置", "en": "Alarm filter setting"}', '', '{"ne_type":"","ne_id":"","orig_severity":"","alarm_code":"","pv_flag":""}', '2023-12-26 10:13:07', NULL);
INSERT INTO "config" VALUES (7, 'Alarm', 'autoAlarmAck', '{"cn": "告警自动确认设置", "en": "Alarm automatic ack setting"}', '', '{"alarm_status":"0","alarm_type":"EquipmentAlarm","orig_severity":"Major","ack_user":"admin"}', '2023-07-28 08:07:02', NULL);
INSERT INTO "config" VALUES (8, 'PM', 'keepPMCKpi', '{"cn": "删除指标保留时长(天)", "en": "Keep custom pm kpi duration(day)"}', '4', NULL, '2023-07-29 11:01:45', NULL);
INSERT INTO "config" VALUES (9, 'Security', 'sessionExpires', '{"cn": "登录会话超时时长(秒)", "en": "User''s session expires(second)"}', '1800000', NULL, '2023-07-31 09:45:17', NULL);
INSERT INTO "config" VALUES (10, 'Alarm', 'forwardAlarm', '{"cn": "告警前转接口设置", "en": "Alarm forward interface"}', NULL, '[{"interface":"Email","to_user":[]},{"interface":"SMS","to_user":["138111112222"]}]', '2024-02-23 14:57:04', NULL);
INSERT INTO "config" VALUES (17, 'Security', 'highRisk', '{"cn":"高危指令设置","en":"High risk instruction settings"}', '1', '[{"timePart":"04:00:00,06:00:00","text":"请不要重复111"},{"timePart":"07:00:00,14:00:00","text":"请不要重复22222"},{"timePart":"09:00:00,15:00:00","text":"请不要重复3333"}]', '2023-08-16 11:23:37', NULL);
INSERT INTO "config" VALUES (18, 'Gold', 'goldSet', '{"cn":"黄金指标设置","en":"Gold Index Setting"}', NULL, '{"goldWeek":"1","omc_name":"23123","login_url":"231231","handshake_url":"321312","grant_type":"321312","user_name":"32131","user_key":"22321","max_data_len":"231","kpi_report_url":"1231231","time_out":"2131"}', '2023-08-13 18:15:01', NULL);
INSERT INTO "config" VALUES (19, 'Security', 'userTimeSet', '{"cn":"账号有效期设置","en":"Account validity period setting"}', '18000', NULL, '2023-08-10 14:18:57', NULL);
INSERT INTO "config" VALUES (20, 'Security', 'pwdStrong', '{"cn":"密码强度设置","en":"Account validity period setting"}', NULL, '{"pwdMinLength":"4","pwdTime":"12","strongNum":"1","outTimeMsg":"密码有效期已过,请联系管理员进行修改密码"}', '2023-08-14 20:18:21', NULL);
INSERT INTO "config" VALUES (22, 'Nbi', 'nbiSet', '{"cn":"北向接口设置","en":"Interface settings"}', NULL, '{"listeningAddress":"21312222222222222222","listeningPort":"312","nbiFileTime":"12312312"}', '2023-08-20 14:30:07', NULL);
INSERT INTO "config" VALUES (25, 'SystemMonitor', 'cpuThreshold', '{"cn":"CPU阈值及告警级别设置","en":"threshold of CPU settings"}', NULL, '{"Major":"60","Minor":"50","Critical":"80","Warning":"90","Event":"75"}', '2023-08-15 18:06:13', NULL);
INSERT INTO "config" VALUES (26, 'SystemMonitor', 'sampleTime', '{"cn":"系统监控采样时间设置","en":"settings"}', NULL, '{"sampleTime":"120"}', '2023-09-04 14:53:24', NULL);
INSERT INTO "config" VALUES (27, 'SystemMonitor', 'fileThreshold', '{"cn":"文件资源阈值及告警级别设置","en":"threshold of file threshold settings"}', NULL, '{"type":"cpuThreshold","Major":"12","Minor":"","Critical":"","Warning":"","Event":""}', '2023-08-15 18:44:18', NULL);
INSERT INTO "config" VALUES (28, 'SystemMonitor', 'RAMThreshold', '{"cn":"内存阈值及告警级别设置","en":"threshold of RAM threshold settings"}', NULL, '{"Major":"", "Minor": "","Critical": "","Warning": "","Event":""}', '2023-08-15 17:34:22', NULL);
INSERT INTO "config" VALUES (29, 'SystemMonitor', 'backupHandle', '{"cn":"手动备份设置","en":"Periodic backup Settings"}', NULL, '{"isAuto":"1","backup_way":"1","backup_value":"2","backup_time":"2023-08-30 18:41:00","backup_medium":"/usr/backup"}', '2023-09-05 11:44:24', 'backup_way:备份方式,backup_value:备份内容,backup_time:备份时间,backup_medium:备份介质,isAuto:是否开启自动备份,"backup_cycle":备份周期');
INSERT INTO "config" VALUES (30, 'SystemMonitor', 'databaseThreshold', '{"cn":"数据库阈值及告警级别设置","en":"threshold of database settings"}', NULL, '{"Major":"", "Minor": "","Critical": "","Warning": "","Event":""}', '2023-08-15 17:32:55', NULL);
INSERT INTO "config" VALUES (31, 'LOG', 'remoteLogSet', '{"cn":"日志远程输出设置","en":"Log Remote Output Settings"}', NULL, '{"logIp":"8.8.8.8","logDirectory":"/tmp"}', '2023-10-30 18:37:25', NULL);
INSERT INTO "config" VALUES (32, 'MML', 'operationSet', '{"cn":"操作维护接口设置","en":"Operation settings"}', NULL, '{"listeningAddress":"192.168.1.100","listeningPort":32130}', '2023-10-20 11:35:40', NULL);
INSERT INTO "config" VALUES (33, 'LOG', 'ftpLogSet', '{"cn":"FTP日志文件接口设置","en":"FTP Log File Interface Settings"}', '7', '{"agreement":"sftp","ftpLog":"12","toIp":"192.168.4.130","directory":"/usr/local/omc/databse"}', '2023-09-05 11:42:01', NULL);
INSERT INTO "config" VALUES (34, 'NF', 'NfConfigSet', '{"cn":"自动备份任务备份时间设置","en":"Automatic backup task backup time setting
"}', '24', NULL, '2023-08-21 18:05:03', NULL);
INSERT INTO "config" VALUES (35, 'SystemMonitor', 'backupCycle', '{"cn":"周期备份设置","en":"Periodic backup Settings"}', NULL, '{"isAuto":"1","backup_way":"1","backup_cycle":"5","backup_value":"0","backup_time":"08:00:00","backup_medium":"/usr/local/omc/backup"}', '2023-09-05 11:44:21', 'backup_way:备份方式,backup_value:备份内容,backup_time:备份时间,backup_medium:备份介质,isAuto:是否开启自动备份,"backup_cycle":备份周期');
INSERT INTO "config" VALUES (36, 'Security', 'loginSecurity', '{"cn":"登录策略设置","en":"Login Security setting"}', '', '{"logintime_range":"08:00:00 - 18:00:00","switch":"0","ipRange":"192.168.4.1/192.168.21.333/192.168.21.114/192.168.2.119/192.168.88.192/192.168.2.112","password_limit_time":"60","limit_num":"5"}', '2023-08-28 15:01:07', '"logintime_range":"允许登录时间范围","start_IP":"开始IP","end_IP":"结束IP","password_limit_time":"密码错误限定时间","limit_num":"限时内密码最大错误次数"');
INSERT INTO "config" VALUES (37, 'System', 'logo', '{"cn":"系统LOGO","en":"System LOGO"}', 'logo30.png', '', '2023-09-20 19:40:03', '');
INSERT INTO "config" VALUES (42, 'System', 'href', '{"cn":"官方链接","en":"Href"}', 'https://www.agrandtech.com.cn/', NULL, '2023-10-12 14:19:51', NULL);
INSERT INTO "config" VALUES (43, 'BackUp', 'BackUpSaveTime', '{"cn": "网元配置文件保留时间(天)", "en": "Retention time of network element configuration files(day)"}', '30', NULL, '2023-10-21 16:08:20', NULL);
-- Dump completed on 2024-03-06 17:27:01

View File

@@ -0,0 +1,39 @@
-- ----------------------------
-- Table structure for group
-- ----------------------------
DROP TABLE IF EXISTS "group";
CREATE TABLE "group" (
"id" integer NOT NULL,
"name" text(255) NOT NULL,
"description" text(255),
"create_time" text,
PRIMARY KEY ("name")
);
-- ----------------------------
-- Indexes structure for table group
-- ----------------------------
CREATE INDEX "fk_account_id"
ON "group" (
"id" ASC
);
CREATE INDEX "name"
ON "group" (
"name" ASC
);
-- ----------------------------
-- Records of group
-- ----------------------------
INSERT INTO "group" VALUES (1, 'admin', 'administrator', '2023-05-13 11:04:54');
INSERT INTO "group" VALUES (3, 'audit', 'audit group', '2023-05-16 22:48:54');
INSERT INTO "group" VALUES (7, 'manager', 'manager', '2023-08-08 13:02:47');
INSERT INTO "group" VALUES (6, 'monitor', 'monitor', '2023-08-24 22:34:44');
INSERT INTO "group" VALUES (9, 'ne', 'all ne', '2023-08-21 11:24:33');
INSERT INTO "group" VALUES (10, 'omc', 'omc', '2023-08-24 09:55:54');
INSERT INTO "group" VALUES (2, 'operator', 'operator', '2023-05-16 22:49:42');
INSERT INTO "group" VALUES (4, 'oss', 'oss ', '2023-05-16 22:54:50');
INSERT INTO "group" VALUES (8, 'test', 'test group', '2023-08-09 15:57:34');
INSERT INTO "group" VALUES (5, 'user', 'user group', '2023-05-16 22:48:46');
-- Dump completed on 2024-03-06 17:27:02

View File

@@ -0,0 +1,464 @@
-- ----------------------------
-- Table structure for kpi_title
-- ----------------------------
DROP TABLE IF EXISTS "kpi_title";
CREATE TABLE "kpi_title" (
"id" integer NOT NULL,
"ne_type" text(16),
"kpi_id" text(16),
"title_json" text,
"cn_title" text(255),
"en_title" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_title
-- ----------------------------
CREATE INDEX "idx_type"
ON "kpi_title" (
"ne_type" ASC
);
-- ----------------------------
-- Records of kpi_title
-- ----------------------------
INSERT INTO "kpi_title" VALUES (1, 'AMF', 'AMF.01', '{"cn": "AMF注册态用户数", "en": "AMF.RegSub"}', 'AMF注册态用户数', 'AMF.RegSub');
INSERT INTO "kpi_title" VALUES (2, 'AMF', 'AMF.02', '{"cn": "AMF初始注册请求次数", "en": "AMF.AttInitReg"}', 'AMF初始注册请求次数', '5G Registration Request');
INSERT INTO "kpi_title" VALUES (3, 'AMF', 'AMF.03', '{"cn": "AMF初始注册成功次数", "en": "AMF.SuccInitReg"}', 'AMF初始注册成功次数', '5G Registration Success');
INSERT INTO "kpi_title" VALUES (4, 'AMF', 'AMF.04', '{"cn": "AMF初始注册失败次数_非法用户", "en": "AMF.FailedInitReg.3"}', 'AMF初始注册失败次数_非法用户', 'AMF.FailedInitReg.3');
INSERT INTO "kpi_title" VALUES (5, 'AMF', 'AMF.05', '{"cn": "AMF初始注册失败次数_PEI不允许", "en": "AMF.FailedInitReg.5"}', 'AMF初始注册失败次数_PEI不允许', 'AMF.FailedInitReg.5');
INSERT INTO "kpi_title" VALUES (6, 'AMF', 'AMF.06', '{"cn": "AMF初始注册失败次数_非法设备", "en": "AMF.FailedInitReg.6"}', 'AMF初始注册失败次数_非法设备', 'AMF.FailedInitReg.6');
INSERT INTO "kpi_title" VALUES (7, 'AMF', 'AMF.07', '{"cn": "AMF初始注册失败次数_5GS服务不允许_用户原因", "en": "AMF.FailedInitReg.7.User"}', 'AMF初始注册失败次数_5GS服务不允许_用户原因', 'AMF.FailedInitReg.7.User');
INSERT INTO "kpi_title" VALUES (8, 'AMF', 'AMF.08', '{"cn": "AMF初始注册失败次数_跟踪区内无合适小区_用户原因", "en": "AMF.FailedInitReg.15.User"}', 'AMF初始注册失败次数_跟踪区内无合适小区_用户原因', 'AMF.FailedInitReg.15.User');
INSERT INTO "kpi_title" VALUES (9, 'AMF', 'AMF.09', '{"cn": "AMF初始注册失败次数_N1模式不允许", "en": "AMF.FailedInitReg.27"}', 'AMF初始注册失败次数_N1模式不允许', 'AMF.FailedInitReg.27');
INSERT INTO "kpi_title" VALUES (10, 'AMF', 'AMF.10', '{"cn": "AMF初始注册失败次数_PLMN不允许", "en": "AMF.FailedInitReg.11"}', 'AMF初始注册失败次数_PLMN不允许', 'AMF.FailedInitReg.11');
INSERT INTO "kpi_title" VALUES (11, 'AMF', 'AMF.11', '{"cn": "AMF初始注册失败次数_跟踪区不允许", "en": "AMF.FailedInitReg.12"}', 'AMF初始注册失败次数_跟踪区不允许', 'AMF.FailedInitReg.12');
INSERT INTO "kpi_title" VALUES (12, 'AMF', 'AMF.12', '{"cn": "AMF初始注册失败次数_漫游跟踪区禁止接入", "en": "AMF.FailedInitReg.13"}', 'AMF初始注册失败次数_漫游跟踪区禁止接入', 'AMF.FailedInitReg.13');
INSERT INTO "kpi_title" VALUES (13, 'AMF', 'AMF.13', '{"cn": "AMF初始注册失败次数_无可用网络切片", "en": "AMF.FailedInitReg.62"}', 'AMF初始注册失败次数_无可用网络切片', 'AMF.FailedInitReg.62');
INSERT INTO "kpi_title" VALUES (14, 'AMF', 'AMF.14', '{"cn": "AMF初始注册失败次数_协议错误_用户原因", "en": "AMF.FailedInitReg.111.User"}', 'AMF初始注册失败次数_协议错误_用户原因', 'AMF.FailedInitReg.111.User');
INSERT INTO "kpi_title" VALUES (15, 'AMF', 'AMF.15', '{"cn": "AMF一次寻呼响应次数", "en": "AMF.FirstPagingSucc"}', 'AMF一次寻呼响应次数', 'AMF.FirstPagingSucc');
INSERT INTO "kpi_title" VALUES (16, 'AMF', 'AMF.16', '{"cn": "AMF二次寻呼响应次数", "en": "AMF.SecondPagingSucc"}', 'AMF二次寻呼响应次数', 'AMF.SecondPagingSucc');
INSERT INTO "kpi_title" VALUES (17, 'AMF', 'AMF.17', '{"cn": "AMF寻呼请求次数", "en": "AMF.PagAtt"}', 'AMF寻呼请求次数', 'AMF.PagAtt');
INSERT INTO "kpi_title" VALUES (18, 'AMF', 'AMF.18', '{"cn": "AMF业务请求被拒次数", "en": "AMF.FailServiceReq"}', 'AMF业务请求被拒次数', 'AMF.FailServiceReq');
INSERT INTO "kpi_title" VALUES (19, 'AMF', 'AMF.19', '{"cn": "AMF业务请求尝试次数", "en": "AMF.AttServiceReq"}', 'AMF业务请求尝试次数', 'AMF.AttServiceReq');
INSERT INTO "kpi_title" VALUES (20, 'SMF', 'SMF.01', '{"cn": "5G实时PDU会话数", "en": "SMF.MeanPduSession"}', '5G实时PDU会话数', 'SMF.MeanPduSession');
INSERT INTO "kpi_title" VALUES (21, 'SMF', 'SMF.02', '{"cn": "PDU会话建立成功次数", "en": "SMF.SuccCreatePduSession"}', 'PDU会话建立成功次数', 'SMF.SuccCreatePduSession');
INSERT INTO "kpi_title" VALUES (22, 'SMF', 'SMF.03', '{"cn": "PDU会话建立请求次数", "en": "SMF.AttCreatePduSession"}', 'PDU会话建立请求次数', 'SMF.AttCreatePduSession');
INSERT INTO "kpi_title" VALUES (23, 'SMF', 'SMF.04', '{"cn": "IMS PDU会话建立成功次数", "en": "SMF.SuccCreatePduSession._Ims"}', 'IMS PDU会话建立成功次数', 'SMF.SuccCreatePduSession._Ims');
INSERT INTO "kpi_title" VALUES (24, 'SMF', 'SMF.05', '{"cn": "IMS PDU会话建立请求次数", "en": "SMF.AttCreatePduSession._Ims"}', 'IMS PDU会话建立请求次数', 'SMF.AttCreatePduSession._Ims');
INSERT INTO "kpi_title" VALUES (25, 'SMF', 'SMF.06', '{"cn": "EPS-Fallback成功数", "en": "SMF.SuccSmfModifyBearerResponse.Epsfb"}', 'EPS-Fallback成功数', 'SMF.SuccSmfModifyBearerResponse.Epsfb');
INSERT INTO "kpi_title" VALUES (26, 'SMF', 'SMF.07', '{"cn": "EPS-Fallback请求数", "en": "SMF.AttSmfModifyPduSession.Epsfb"}', 'EPS-Fallback请求数', 'SMF.AttSmfModifyPduSession.Epsfb');
INSERT INTO "kpi_title" VALUES (27, 'UDM', 'UDM.01', '{"cn": "5G注册用户数", "en": "UDR.5gActSub"}', '5G注册用户数', 'UDR.5gActSub');
INSERT INTO "kpi_title" VALUES (28, 'UDM', 'UDM.02', '{"cn": "AMF发起的UECM注册请求次数", "en": "UDM.AmfUecmRegReq"}', 'AMF发起的UECM注册请求次数', 'UDM.AmfUecmRegReq');
INSERT INTO "kpi_title" VALUES (29, 'UDM', 'UDM.03', '{"cn": "AMF发起的UECM注册成功次数", "en": "UDM.AmfUecmRegSucc"}', 'AMF发起的UECM注册成功次数', 'UDM.AmfUecmRegSucc');
INSERT INTO "kpi_title" VALUES (30, 'UDM', 'UDM.04', '{"cn": "SMF发起的UECM注册成功次数", "en": "UDM.SmfUecmRegSucc"}', 'SMF发起的UECM注册成功次数', 'UDM.SmfUecmRegSucc');
INSERT INTO "kpi_title" VALUES (31, 'UDM', 'UDM.05', '{"cn": "SMF发起的UECM注册请求次数", "en": "UDM.SmfUecmRegReq"}', 'SMF发起的UECM注册请求次数', 'UDM.SmfUecmRegReq');
INSERT INTO "kpi_title" VALUES (32, 'UDM', 'UDM.06', '{"cn": "4G注册用户数", "en": "SUB.EpsActSubsInHss"}', '4G注册用户数', 'SUB.EpsActSubsInHss');
INSERT INTO "kpi_title" VALUES (33, 'UDM', 'UDM.07', '{"cn": "4G鉴权信息查询成功次数", "en": "DIAM.AucInfoAnsSucc"}', '4G鉴权信息查询成功次数', 'DIAM.AucInfoAnsSucc');
INSERT INTO "kpi_title" VALUES (34, 'UDM', 'UDM.08', '{"cn": "4G鉴权信息查询请求次数", "en": "DIAM.AucInfoReq"}', '4G鉴权信息查询请求次数', 'DIAM.AucInfoReq');
INSERT INTO "kpi_title" VALUES (35, 'UDM', 'UDM.09', '{"cn": "4G更新位置成功次数", "en": "DIAM.UpdateLocationAnsSucc"}', '4G更新位置成功次数', 'DIAM.UpdateLocationAnsSucc');
INSERT INTO "kpi_title" VALUES (36, 'UDM', 'UDM.10', '{"cn": "4G更新位置请求次数", "en": "DIAM.UpdateLocationReq"}', '4G更新位置请求次数', 'DIAM.UpdateLocationReq');
INSERT INTO "kpi_title" VALUES (37, 'UDM', 'UDM.11', '{"cn": "SAR成功响应总次数", "en": "UR.SuccSAA"}', 'SAR成功响应总次数', 'UR.SuccSAA');
INSERT INTO "kpi_title" VALUES (38, 'UDM', 'UDM.12', '{"cn": "SAR请求总次数", "en": "UR.AttSAR"}', 'SAR请求总次数', 'UR.AttSAR');
INSERT INTO "kpi_title" VALUES (39, 'UDM', 'UDM.13', '{"cn": "LIR成功响应总次数", "en": "LIQ.SuccLIA"}', 'LIR成功响应总次数', 'LIQ.SuccLIA');
INSERT INTO "kpi_title" VALUES (40, 'UDM', 'UDM.14', '{"cn": "LIR请求总次数", "en": "LIQ.AttLIR"}', 'LIR请求总次数', 'LIQ.AttLIR');
INSERT INTO "kpi_title" VALUES (41, 'AUSF', 'AUSF.01', '{"cn": "鉴权成功次数", "en": "Ausf.UeAuthAnsSucc"}', '鉴权成功次数', 'Ausf.UeAuthAnsSucc');
INSERT INTO "kpi_title" VALUES (42, 'AUSF', 'AUSF.02', '{"cn": "鉴权请求次数", "en": "Ausf.UeAuthReq"}', '鉴权请求次数', 'Ausf.UeAuthReq');
INSERT INTO "kpi_title" VALUES (43, 'UPF', 'UPF.01', '{"cn": "PFCP会话建立成功次数", "en": "UPF.PfcpSessionEstabSucc"}', 'PFCP会话建立成功次数', 'UPF.PfcpSessionEstabSucc');
INSERT INTO "kpi_title" VALUES (44, 'UPF', 'UPF.02', '{"cn": "PFCP会话建立请求次数", "en": "UPF.PfcpSessionEstabReq"}', 'PFCP会话建立请求次数', 'UPF.PfcpSessionEstabReq');
INSERT INTO "kpi_title" VALUES (45, 'UPF', 'UPF.03', '{"cn": "N6接口上行字节数", "en": "UPF.N6OgOct"}', 'N6接口上行字节数', 'UPF.N6OgOct');
INSERT INTO "kpi_title" VALUES (46, 'UPF', 'UPF.04', '{"cn": "N6接口下行字节数", "en": "UPF.N6IncOct"}', 'N6接口下行字节数', 'UPF Downlink Throughput');
INSERT INTO "kpi_title" VALUES (47, 'UPF', 'UPF.05', '{"cn": "N3接口上行字节数", "en": "UPF.N3OgOct"}', 'N3接口上行字节数', 'UPF Uplink Throughput');
INSERT INTO "kpi_title" VALUES (48, 'UPF', 'UPF.06', '{"cn": "N3接口下行字节数", "en": "UPF.N3IncOct"}', 'N3接口下行字节数', 'UPF.N3IncOct');
INSERT INTO "kpi_title" VALUES (49, 'UPF', 'UPF.07', '{"cn": "SGi接口上行字节数", "en": "IP.PeakThroughputUlSgi"}', 'SGi接口上行字节数', 'IP.PeakThroughputUlSgi');
INSERT INTO "kpi_title" VALUES (50, 'UPF', 'UPF.08', '{"cn": "SGi接口下行字节数", "en": "IP.PeakThroughputDlSgi"}', 'SGi接口下行字节数', 'IP.PeakThroughputDlSgi');
INSERT INTO "kpi_title" VALUES (51, 'UPF', 'UPF.09', '{"cn": "S1-U接口上行字节数", "en": "GTP.OutOctS1uSgw"}', 'S1-U接口上行字节数', 'GTP.OutOctS1uSgw');
INSERT INTO "kpi_title" VALUES (52, 'UPF', 'UPF.10', '{"cn": "S1-U接口下行字节数", "en": "GTP.IncOctS1uSgw"}', 'S1-U接口下行字节数', 'GTP.IncOctS1uSgw');
INSERT INTO "kpi_title" VALUES (53, 'AMF', 'AMF.20', '{"cn": "EPS在线用户数", "en": "SUB.NbrSub.EcmIdle+SUB.NbrSub.EcmConnected"}', 'EPS在线用户数', 'SUB.NbrSub.EcmIdle+SUB.NbrSub.EcmConnected');
INSERT INTO "kpi_title" VALUES (54, 'AMF', 'AMF.21', '{"cn": "EPS附着成功次数", "en": "MM.SuccEpsAttach"}', 'EPS附着成功次数', 'MM.SuccEpsAttach');
INSERT INTO "kpi_title" VALUES (55, 'AMF', 'AMF.22', '{"cn": "EPS附着请求次数", "en": "MM.AttEpsAttach"}', 'EPS附着请求次数', 'MM.AttEpsAttach');
INSERT INTO "kpi_title" VALUES (56, 'AMF', 'AMF.23', '{"cn": "EPS附着失败次数_非法用户", "en": "MM.FailedEpsAttach.3"}', 'EPS附着失败次数_非法用户', 'MM.FailedEpsAttach.3');
INSERT INTO "kpi_title" VALUES (57, 'AMF', 'AMF.24', '{"cn": "EPS附着失败次数_非法终端", "en": "MM.FailedEpsAttach.5"}', 'EPS附着失败次数_非法终端', 'MM.FailedEpsAttach.5');
INSERT INTO "kpi_title" VALUES (58, 'AMF', 'AMF.25', '{"cn": "EPS附着失败次数_非法ME", "en": "MM.FailedEpsAttach.6"}', 'EPS附着失败次数_非法ME', 'MM.FailedEpsAttach.6');
INSERT INTO "kpi_title" VALUES (59, 'AMF', 'AMF.26', '{"cn": "EPS附着失败次数_EPS服务不允许_用户原因", "en": "MM.FailedEpsAttach.7.User"}', 'EPS附着失败次数_EPS服务不允许_用户原因', 'MM.FailedEpsAttach.7.User');
INSERT INTO "kpi_title" VALUES (60, 'AMF', 'AMF.27', '{"cn": "EPS附着失败次数_EPS和非EPS服务不允许", "en": "MM.FailedEpsAttach.8"}', 'EPS附着失败次数_EPS和非EPS服务不允许', 'MM.FailedEpsAttach.8');
INSERT INTO "kpi_title" VALUES (61, 'AMF', 'AMF.28', '{"cn": "EPS附着失败次数_跟踪区内无合适小区_用户原因", "en": "MM.FailedEpsAttach.15.User"}', 'EPS附着失败次数_跟踪区内无合适小区_用户原因', 'MM.FailedEpsAttach.15.User');
INSERT INTO "kpi_title" VALUES (62, 'AMF', 'AMF.29', '{"cn": "EPS附着失败次数_ESM失败_用户原因", "en": "MM.FailedEpsAttach.19.User"}', 'EPS附着失败次数_ESM失败_用户原因', 'MM.FailedEpsAttach.19.User');
INSERT INTO "kpi_title" VALUES (63, 'AMF', 'AMF.30', '{"cn": "MME一次寻呼响应次数", "en": "MM.FirstPagingSucc"}', 'MME一次寻呼响应次数', 'MM.FirstPagingSucc');
INSERT INTO "kpi_title" VALUES (64, 'AMF', 'AMF.31', '{"cn": "MME二次寻呼响应次数", "en": "MM.SecondPagingSucc"}', 'MME二次寻呼响应次数', 'MM.SecondPagingSucc');
INSERT INTO "kpi_title" VALUES (65, 'AMF', 'AMF.32', '{"cn": "MME寻呼请求次数", "en": "MM.PagAtt"}', 'MME寻呼请求次数', 'MM.PagAtt');
INSERT INTO "kpi_title" VALUES (66, 'SMF', 'SMF.08', '{"cn": "4G在线会话数", "en": "SM.MeanNbrBearerPgw.Default"}', '4G在线会话数', 'SM.MeanNbrBearerPgw.Default');
INSERT INTO "kpi_title" VALUES (67, 'SMF', 'SMF.09', '{"cn": "PGW缺省承载建立成功个数", "en": "SM.SuccCreateDefaultEpsBearer"}', 'PGW缺省承载建立成功个数', 'SM.SuccCreateDefaultEpsBearer');
INSERT INTO "kpi_title" VALUES (68, 'SMF', 'SMF.10', '{"cn": "PGW缺省承载建立请求个数", "en": "SM.AttCreateDefaultEpsBearer"}', 'PGW缺省承载建立请求个数', 'SM.AttCreateDefaultEpsBearer');
INSERT INTO "kpi_title" VALUES (69, 'SMF', 'SMF.11', '{"cn": "PGW专用承载建立成功个数", "en": "SM.SuccCreateDedicatedEpsBearer"}', 'PGW专用承载建立成功个数', 'SM.SuccCreateDedicatedEpsBearer');
INSERT INTO "kpi_title" VALUES (70, 'SMF', 'SMF.12', '{"cn": "PGW专用承载建立请求个数", "en": "SM.AttCreateDedicatedEpsBearer"}', 'PGW专用承载建立请求个数', 'SM.AttCreateDedicatedEpsBearer');
INSERT INTO "kpi_title" VALUES (71, 'SMF', 'SMF.13', '{"cn": "IMS缺省承载成功建立个数", "en": "SM.SuccCreateDefaultEpsBearer._Ims"}', 'IMS缺省承载成功建立个数', 'SM.SuccCreateDefaultEpsBearer._Ims');
INSERT INTO "kpi_title" VALUES (72, 'SMF', 'SMF.14', '{"cn": "IMS缺省承载请求建立个数", "en": "SM.AttCreateDefaultEpsBearer._Ims"}', 'IMS缺省承载请求建立个数', 'SM.AttCreateDefaultEpsBearer._Ims');
INSERT INTO "kpi_title" VALUES (73, 'AMF', 'AMF.A.02', '{"cn":"AMF移动性注册更新成功次数","en":"AMF.SuccMobiReg"}', 'AMF移动性注册更新成功次数', 'AMF.SuccMobiReg');
INSERT INTO "kpi_title" VALUES (74, 'AMF', 'AMF.A.03', '{"cn":"AMF移动性注册更新失败次数","en":"AMF.FailedMobiReg"}', 'AMF移动性注册更新失败次数', 'AMF.FailedMobiReg');
INSERT INTO "kpi_title" VALUES (75, 'AMF', 'AMF.A.04', '{"cn":"AMF紧急注册请求次数","en":"AMF.AttEmergReg"}', 'AMF紧急注册请求次数', 'AMF.AttEmergReg');
INSERT INTO "kpi_title" VALUES (76, 'AMF', 'AMF.A.05', '{"cn":"AMF紧急注册成功次数","en":"AMF.SuccEmergReg"}', 'AMF紧急注册成功次数', 'AMF.SuccEmergReg');
INSERT INTO "kpi_title" VALUES (77, 'AMF', 'AMF.A.06', '{"cn":"AMF紧急注册失败次数","en":"AMF.FailedEmergReg"}', 'AMF紧急注册失败次数', 'AMF.FailedEmergReg');
INSERT INTO "kpi_title" VALUES (78, 'AMF', 'AMF.A.07', '{"cn":"UE发起的去注册请求次数","en":"AMF.AttUeDereg"}', 'UE发起的去注册请求次数', 'AMF.AttUeDereg');
INSERT INTO "kpi_title" VALUES (79, 'AMF', 'AMF.A.08', '{"cn":"UE发起的去注册成功次数","en":"AMF.SuccUeDereg"}', 'UE发起的去注册成功次数', 'AMF.SuccUeDereg');
INSERT INTO "kpi_title" VALUES (80, 'AMF', 'AMF.A.09', '{"cn":"AMF发起的去注册请求次数","en":"AMF.AttAmfDereg"}', 'AMF发起的去注册请求次数', 'AMF.AttAmfDereg');
INSERT INTO "kpi_title" VALUES (81, 'AMF', 'AMF.A.10', '{"cn":"AMF发起的去注册成功次数","en":"AMF.SuccAmfDereg"}', 'AMF发起的去注册成功次数', 'AMF.SuccAmfDereg');
INSERT INTO "kpi_title" VALUES (82, 'AMF', 'AMF.A.11', '{"cn":"UDM发起的去注册请求次数","en":"AMF.AttUdmDereg"}', 'UDM发起的去注册请求次数', 'AMF.AttUdmDereg');
INSERT INTO "kpi_title" VALUES (83, 'AMF', 'AMF.A.12', '{"cn":"UDM发起的去注册成功次数","en":"AMF.SuccUdmDereg"}', 'UDM发起的去注册成功次数', 'AMF.SuccUdmDereg');
INSERT INTO "kpi_title" VALUES (84, 'AMF', 'AMF.A.13', '{"cn":"AMF寻呼失败次数","en":"AMF.PagFail"}', 'AMF寻呼失败次数', 'AMF.PagFail');
INSERT INTO "kpi_title" VALUES (85, 'AMF', 'AMF.A.14', '{"cn":"AMF隐式去注册次数","en":"AMF.ImplicitDereg"}', 'AMF隐式去注册次数', 'AMF.ImplicitDereg');
INSERT INTO "kpi_title" VALUES (86, 'SMF', 'SMF.A.01', '{"cn":"PDU会话接受次数","en":"SMF.PduSessAcpt"}', 'PDU会话接受次数', 'SMF.PduSessAcpt');
INSERT INTO "kpi_title" VALUES (87, 'SMF', 'SMF.A.02', '{"cn":"基站Pdu资源创建成功次数","en":"SM.PduResSetupSucc"}', '基站Pdu资源创建成功次数', 'SM.PduResSetupSucc');
INSERT INTO "kpi_title" VALUES (88, 'SMF', 'SMF.A.03', '{"cn":"查询用户SM数据失败次数","en":"SM.RetrieveSmDataFail"}', '查询用户SM数据失败次数', 'SM.RetrieveSmDataFail');
INSERT INTO "kpi_title" VALUES (89, 'SMF', 'SMF.A.04', '{"cn":"PFCP会话建立失败次数","en":"SM.PfcpSessEstFail"}', 'PFCP会话建立失败次数', 'SM.PfcpSessEstFail');
INSERT INTO "kpi_title" VALUES (90, 'SMF', 'SMF.A.05', '{"cn":"基站Pdu资源创建失败次数","en":"SM.PduResSetupFail"}', '基站Pdu资源创建失败次数', 'SM.PduResSetupFail');
INSERT INTO "kpi_title" VALUES (91, 'SMF', 'SMF.A.06', '{"cn":"PFCP会话修改失败次数","en":"SM.PfcpSessMdfyFail"}', 'PFCP会话修改失败次数', 'SM.PfcpSessMdfyFail');
INSERT INTO "kpi_title" VALUES (92, 'SMF', 'SMF.A.07', '{"cn":"PDU会话拒绝次数","en":"SM.PduSessRejt"}', 'PDU会话拒绝次数', 'SM.PduSessRejt');
INSERT INTO "kpi_title" VALUES (93, 'SMF', 'SMF.A.08', '{"cn":"PDU会话释放指示次数","en":"SM.PduSessRelCmd"}', 'PDU会话释放指示次数', 'SM.PduSessRelCmd');
INSERT INTO "kpi_title" VALUES (94, 'NSSF', 'NSSF.A.02', '{"cn":"可用AMF注册次数","en":"NSSF.SuccAvailAMFPut"}', '可用AMF注册成功次数', 'NSSF.SuccAvailAMFPut');
INSERT INTO "kpi_title" VALUES (95, 'NSSF', 'NSSF.A.03', '{"cn":"可用AMF注册更新成功次数","en":"NSSF.AvailAMFPut"}', '可用AMF注册次数', 'NSSF.AvailAMFPut');
INSERT INTO "kpi_title" VALUES (96, 'NSSF', 'NSSF.A.04', '{"cn":"可用AMF注册更新次数","en":"NSSF.SuccAvailAMFPatch"}', '可用AMF注册更新成功次数', 'NSSF.SuccAvailAMFPatch');
INSERT INTO "kpi_title" VALUES (97, 'NSSF', 'NSSF.A.01', '{"cn":"可用AMF注册成功次数","en":"NSSF.AvailAMFPatch"}', '可用AMF注册更新次数', 'NSSF.AvailAMFPatch');
INSERT INTO "kpi_title" VALUES (98, 'NSSF', 'NSSF.A.05', '{"cn":"可用AMF去注册成功次数","en":"NSSF.SuccAvailAMFDelete"}', '可用AMF去注册成功次数', 'NSSF.SuccAvailAMFDelete');
INSERT INTO "kpi_title" VALUES (99, 'NSSF', 'NSSF.A.06', '{"cn":"可用AMF去注册次数","en":"NSSF.AvailAMFDelete"}', '可用AMF去注册次数', 'NSSF.AvailAMFDelete');
INSERT INTO "kpi_title" VALUES (100, 'NSSF', 'NSSF.A.07', '{"cn":"网元订阅成功次数","en":"NSSF.SuccAvailSubscription"}', '网元订阅成功次数', 'NSSF.SuccAvailSubscription');
INSERT INTO "kpi_title" VALUES (101, 'NSSF', 'NSSF.A.08', '{"cn":"网元订阅次数","en":"NSSF.AvailSubscription"}', '网元订阅次数', 'NSSF.AvailSubscription');
INSERT INTO "kpi_title" VALUES (102, 'NSSF', 'NSSF.A.09', '{"cn":"网元去订阅成功次数","en":"NSSF.SuccAvailUnsubscription"}', '网元去订阅成功次数', 'NSSF.SuccAvailUnsubscription');
INSERT INTO "kpi_title" VALUES (103, 'NSSF', 'NSSF.A.10', '{"cn":"网元去订阅次数","en":"NSSF.AvailUnsubscription"}', '网元去订阅次数', 'NSSF.AvailUnsubscription');
INSERT INTO "kpi_title" VALUES (104, 'NSSF', 'NSSF.A.11', '{"cn":"向NRF注册成功次数","en":"NSSF.SuccNRFReg"}', '向NRF注册成功次数', 'NSSF.SuccNRFReg');
INSERT INTO "kpi_title" VALUES (105, 'NSSF', 'NSSF.A.12', '{"cn":"向NRF注册次数","en":"NSSF.NRFReg"}', '向NRF注册次数', 'NSSF.NRFReg');
INSERT INTO "kpi_title" VALUES (106, 'NSSF', 'NSSF.A.13', '{"cn":"向NRF发送心跳次数","en":"NSSF.NRFHeartbeat"}', '向NRF发送心跳次数', 'NSSF.NRFHeartbeat');
INSERT INTO "kpi_title" VALUES (107, 'NSSF', 'NSSF.A.14', '{"cn":"当前注册AMF个数","en":"NSSF.CurrentAMFCount"}', '当前注册AMF个数', 'NSSF.CurrentAMFCount');
INSERT INTO "kpi_title" VALUES (108, 'NSSF', 'NSSF.A.15', '{"cn":"当前订阅网元个数","en":"NSSF.CurrentSubscriperCount"}', '当前订阅网元个数', 'NSSF.CurrentSubscriperCount');
INSERT INTO "kpi_title" VALUES (109, 'MME', 'MME.A.01', '{"cn":"MME附着请求次数","en":"EpsAttachAtt"}', 'MME附着请求次数', 'EpsAttachAtt');
INSERT INTO "kpi_title" VALUES (110, 'MME', 'MME.A.02', '{"cn":"MME附着成功次数","en":"EpsAttachSucc"}', 'MME附着成功次数', 'EpsAttachSucc');
INSERT INTO "kpi_title" VALUES (111, 'MME', 'MME.A.03', '{"cn":"MME附着失败次数","en":"EpsAttachFail"}', 'MME附着失败次数', 'EpsAttachFail');
INSERT INTO "kpi_title" VALUES (112, 'MME', 'MME.A.04', '{"cn":"MME组合附着请求次数","en":"CombAttachAtt"}', 'MME组合附着请求次数', 'CombAttachAtt');
INSERT INTO "kpi_title" VALUES (113, 'MME', 'MME.A.05', '{"cn":"MME组合附着成功次数","en":"CombAttachSucc"}', 'MME组合附着成功次数', 'CombAttachSucc');
INSERT INTO "kpi_title" VALUES (114, 'MME', 'MME.A.06', '{"cn":"MME组合附着失败次数","en":"CombAttachFail"}', 'MME组合附着失败次数', 'CombAttachFail');
INSERT INTO "kpi_title" VALUES (115, 'MME', 'MME.A.07', '{"cn":"MME紧急附着请求次数","en":"EmergAttachAtt"}', 'MME紧急附着请求次数', 'EmergAttachAtt');
INSERT INTO "kpi_title" VALUES (116, 'MME', 'MME.A.08', '{"cn":"MME紧急附着成功次数","en":"EmergAttachSucc"}', 'MME紧急附着成功次数', 'EmergAttachSucc');
INSERT INTO "kpi_title" VALUES (117, 'MME', 'MME.A.09', '{"cn":"MME紧急附着失败次数","en":"EmergAttachFail"}', 'MME紧急附着失败次数', 'EmergAttachFail');
INSERT INTO "kpi_title" VALUES (118, 'MME', 'MME.A.10', '{"cn":"UE发起的分离请求次数","en":"EpsDetachUeAtt"}', 'UE发起的分离请求次数', 'EpsDetachUeAtt');
INSERT INTO "kpi_title" VALUES (119, 'MME', 'MME.A.11', '{"cn":"UE发起的分离请求成功次数","en":"EpsDetachUeSucc"}', 'UE发起的分离请求成功次数', 'EpsDetachUeSucc');
INSERT INTO "kpi_title" VALUES (120, 'MME', 'MME.A.12', '{"cn":"MME发起的分离请求次数","en":"EpsDetachMMEAtt"}', 'MME发起的分离请求次数', 'EpsDetachMMEAtt');
INSERT INTO "kpi_title" VALUES (121, 'MME', 'MME.A.13', '{"cn":"MME发起的分离请求成功次数","en":"EpsDetachMMESucc"}', 'MME发起的分离请求成功次数', 'EpsDetachMMESucc');
INSERT INTO "kpi_title" VALUES (122, 'MME', 'MME.A.14', '{"cn":"伴随SGW内切换的TAU请求次数","en":"TauIntraSgwAtt"}', '伴随SGW内切换的TAU请求次数', 'TauIntraSgwAtt');
INSERT INTO "kpi_title" VALUES (123, 'MME', 'MME.A.15', '{"cn":"伴随SGW内切换的TAU成功请求次数","en":"TauIntraSgwSucc"}', '伴随SGW内切换的TAU成功请求次数', 'TauIntraSgwSucc');
INSERT INTO "kpi_title" VALUES (124, 'MME', 'MME.A.16', '{"cn":"伴随SGW内切换的TAU失败请求次数","en":"TauIntraSgwFail"}', '伴随SGW内切换的TAU失败请求次数', 'TauIntraSgwFail');
INSERT INTO "kpi_title" VALUES (125, 'MME', 'MME.A.17', '{"cn":"MME寻呼次数","en":"PagingEpsAtt"}', 'MME寻呼次数', 'PagingEpsAtt');
INSERT INTO "kpi_title" VALUES (126, 'MME', 'MME.A.18', '{"cn":"MME寻呼成功次数","en":"PagingEpsSucc"}', 'MME寻呼成功次数', 'PagingEpsSucc');
INSERT INTO "kpi_title" VALUES (127, 'MME', 'MME.A.19', '{"cn":"MME寻呼失败次数","en":"PagingEpsFail"}', 'MME寻呼失败次数', 'PagingEpsFail');
INSERT INTO "kpi_title" VALUES (128, 'MME', 'MME.A.20', '{"cn":"MME隐式分离请求次数","en":"EpsImplicitDetach"}', 'MME隐式分离请求次数', 'EpsImplicitDetach');
INSERT INTO "kpi_title" VALUES (129, 'MME', 'MME.A.21', '{"cn":"MME激活专用承载请求次数","en":"ActDedicatedEpsBearerAtt"}', 'MME激活专用承载请求次数', 'ActDedicatedEpsBearerAtt');
INSERT INTO "kpi_title" VALUES (130, 'MME', 'MME.A.22', '{"cn":"MME激活专用承载请求成功次数","en":"ActDedicatedEpsBearerSucc"}', 'MME激活专用承载请求成功次数', 'ActDedicatedEpsBearerSucc');
INSERT INTO "kpi_title" VALUES (131, 'MME', 'MME.A.23', '{"cn":"MME激活专用承载请求失败次数","en":"ActDedicatedEpsBearerFail"}', 'MME激活专用承载请求失败次数', 'ActDedicatedEpsBearerFail');
INSERT INTO "kpi_title" VALUES (132, 'MME', 'MME.A.24', '{"cn":"MME去激活专用承载请求次数","en":"DeactEpsDedicatedBearerAtt"}', 'MME去激活专用承载请求次数', 'DeactEpsDedicatedBearerAtt');
INSERT INTO "kpi_title" VALUES (133, 'MME', 'MME.A.25', '{"cn":"MME去激活专用承载请求成功次数","en":"DeactEpsDedicatedBearerSucc"}', 'MME去激活专用承载请求成功次数', 'DeactEpsDedicatedBearerSucc');
INSERT INTO "kpi_title" VALUES (134, 'MME', 'MME.A.26', '{"cn":"MME修改专用承载请求次数","en":"ModEpsBearerAtt"}', 'MME修改专用承载请求次数', 'ModEpsBearerAtt');
INSERT INTO "kpi_title" VALUES (135, 'MME', 'MME.A.27', '{"cn":"MME修改专用承载请求成功次数","en":"ModEpsBearerSucc"}', 'MME修改专用承载请求成功次数', 'ModEpsBearerSucc');
INSERT INTO "kpi_title" VALUES (136, 'MME', 'MME.A.28', '{"cn":"MME修改专用承载请求失败次数","en":"ModEpsBearerFail"}', 'MME修改专用承载请求失败次数', 'ModEpsBearerFail');
INSERT INTO "kpi_title" VALUES (137, 'MME', 'MME.A.29', '{"cn":"MME服务请求次数","en":"EpsServiceReqAtt"}', 'MME服务请求次数', 'EpsServiceReqAtt');
INSERT INTO "kpi_title" VALUES (138, 'MME', 'MME.A.30', '{"cn":"MME服务请求成功次数","en":"EpsServiceReqSucc"}', 'MME服务请求成功次数', 'EpsServiceReqSucc');
INSERT INTO "kpi_title" VALUES (139, 'MME', 'MME.A.31', '{"cn":"MME服务请求失败次数","en":"EpsServiceReqFail"}', 'MME服务请求失败次数', 'EpsServiceReqFail');
INSERT INTO "kpi_title" VALUES (140, 'MOCNGW', 'MOCNGW.01', '{"cn":"AttachRequest","en":"AttachRequest"}', 'AttachRequest', 'AttachRequest');
INSERT INTO "kpi_title" VALUES (141, 'MOCNGW', 'MOCNGW.02', '{"cn":"AttachAccept","en":"AttachAccept"}', 'AttachAccept', 'AttachAccept');
INSERT INTO "kpi_title" VALUES (142, 'MOCNGW', 'MOCNGW.03', '{"cn":"AttachComplete","en":"AttachComplete"}', 'AttachComplete', 'AttachComplete');
INSERT INTO "kpi_title" VALUES (143, 'MOCNGW', 'MOCNGW.04', '{"cn":"AttachReject","en":"AttachReject"}', 'AttachReject', 'AttachReject');
INSERT INTO "kpi_title" VALUES (144, 'MOCNGW', 'MOCNGW.05', '{"cn":"DetachRequest","en":"DetachRequest"}', 'DetachRequest', 'DetachRequest');
INSERT INTO "kpi_title" VALUES (145, 'MOCNGW', 'MOCNGW.06', '{"cn":"DetachAccept","en":"DetachAccept"}', 'DetachAccept', 'DetachAccept');
INSERT INTO "kpi_title" VALUES (146, 'MOCNGW', 'MOCNGW.07', '{"cn":"TrackingAreaUpdateRequest","en":"TrackingAreaUpdateRequest"}', 'TrackingAreaUpdateRequest', 'TrackingAreaUpdateRequest');
INSERT INTO "kpi_title" VALUES (147, 'MOCNGW', 'MOCNGW.08', '{"cn":"TrackingAreaUpdateAccept","en":"TrackingAreaUpdateAccept"}', 'TrackingAreaUpdateAccept', 'TrackingAreaUpdateAccept');
INSERT INTO "kpi_title" VALUES (148, 'MOCNGW', 'MOCNGW.09', '{"cn":"TrackingAreaUpdateComplete","en":"TrackingAreaUpdateComplete"}', 'TrackingAreaUpdateComplete', 'TrackingAreaUpdateComplete');
INSERT INTO "kpi_title" VALUES (149, 'MOCNGW', 'MOCNGW.10', '{"cn":"TrackingAreaUpdateReject","en":"TrackingAreaUpdateReject"}', 'TrackingAreaUpdateReject', 'TrackingAreaUpdateReject');
INSERT INTO "kpi_title" VALUES (150, 'MOCNGW', 'MOCNGW.11', '{"cn":"ServiceRequest","en":"ServiceRequest"}', 'ServiceRequest', 'ServiceRequest');
INSERT INTO "kpi_title" VALUES (151, 'MOCNGW', 'MOCNGW.12', '{"cn":"ExtendedServiceRequest","en":"ExtendedServiceRequest"}', 'ExtendedServiceRequest', 'ExtendedServiceRequest');
INSERT INTO "kpi_title" VALUES (152, 'MOCNGW', 'MOCNGW.13', '{"cn":"ControlPlaneServiceRequest","en":"ControlPlaneServiceRequest"}', 'ControlPlaneServiceRequest', 'ControlPlaneServiceRequest');
INSERT INTO "kpi_title" VALUES (153, 'MOCNGW', 'MOCNGW.14', '{"cn":"ServiceReject","en":"ServiceReject"}', 'ServiceReject', 'ServiceReject');
INSERT INTO "kpi_title" VALUES (154, 'MOCNGW', 'MOCNGW.15', '{"cn":"ServiceAccept","en":"ServiceAccept"}', 'ServiceAccept', 'ServiceAccept');
INSERT INTO "kpi_title" VALUES (155, 'MOCNGW', 'MOCNGW.16', '{"cn":"GutiReallocationCommand","en":"GutiReallocationCommand"}', 'GutiReallocationCommand', 'GutiReallocationCommand');
INSERT INTO "kpi_title" VALUES (156, 'MOCNGW', 'MOCNGW.17', '{"cn":"GutiReallocationComplete","en":"GutiReallocationComplete"}', 'GutiReallocationComplete', 'GutiReallocationComplete');
INSERT INTO "kpi_title" VALUES (157, 'MOCNGW', 'MOCNGW.18', '{"cn":"AuthenticationRequest","en":"AuthenticationRequest"}', 'AuthenticationRequest', 'AuthenticationRequest');
INSERT INTO "kpi_title" VALUES (158, 'MOCNGW', 'MOCNGW.19', '{"cn":"AuthenticationResponse","en":"AuthenticationResponse"}', 'AuthenticationResponse', 'AuthenticationResponse');
INSERT INTO "kpi_title" VALUES (159, 'MOCNGW', 'MOCNGW.20', '{"cn":"AuthenticationReject","en":"AuthenticationReject"}', 'AuthenticationReject', 'AuthenticationReject');
INSERT INTO "kpi_title" VALUES (160, 'MOCNGW', 'MOCNGW.21', '{"cn":"AuthenticationFailure","en":"AuthenticationFailure"}', 'AuthenticationFailure', 'AuthenticationFailure');
INSERT INTO "kpi_title" VALUES (161, 'MOCNGW', 'MOCNGW.22', '{"cn":"IdentityRequest","en":"IdentityRequest"}', 'IdentityRequest', 'IdentityRequest');
INSERT INTO "kpi_title" VALUES (162, 'MOCNGW', 'MOCNGW.23', '{"cn":"IdentityResponse","en":"IdentityResponse"}', 'IdentityResponse', 'IdentityResponse');
INSERT INTO "kpi_title" VALUES (163, 'MOCNGW', 'MOCNGW.24', '{"cn":"SecurityModeCommand","en":"SecurityModeCommand"}', 'SecurityModeCommand', 'SecurityModeCommand');
INSERT INTO "kpi_title" VALUES (164, 'MOCNGW', 'MOCNGW.25', '{"cn":"SecurityModeComplete","en":"SecurityModeComplete"}', 'SecurityModeComplete', 'SecurityModeComplete');
INSERT INTO "kpi_title" VALUES (165, 'MOCNGW', 'MOCNGW.26', '{"cn":"SecurityModeReject","en":"SecurityModeReject"}', 'SecurityModeReject', 'SecurityModeReject');
INSERT INTO "kpi_title" VALUES (166, 'MOCNGW', 'MOCNGW.27', '{"cn":"EmmStatus","en":"EmmStatus"}', 'EmmStatus', 'EmmStatus');
INSERT INTO "kpi_title" VALUES (167, 'MOCNGW', 'MOCNGW.28', '{"cn":"EmmInformation","en":"EmmInformation"}', 'EmmInformation', 'EmmInformation');
INSERT INTO "kpi_title" VALUES (168, 'MOCNGW', 'MOCNGW.29', '{"cn":"DownlinkNasTransport","en":"DownlinkNasTransport"}', 'DownlinkNasTransport', 'DownlinkNasTransport');
INSERT INTO "kpi_title" VALUES (169, 'MOCNGW', 'MOCNGW.30', '{"cn":"UplinkNasTransport","en":"UplinkNasTransport"}', 'UplinkNasTransport', 'UplinkNasTransport');
INSERT INTO "kpi_title" VALUES (170, 'MOCNGW', 'MOCNGW.31', '{"cn":"CsServiceNotification","en":"CsServiceNotification"}', 'CsServiceNotification', 'CsServiceNotification');
INSERT INTO "kpi_title" VALUES (171, 'MOCNGW', 'MOCNGW.32', '{"cn":"DownlinkGenericNasTransport","en":"DownlinkGenericNasTransport"}', 'DownlinkGenericNasTransport', 'DownlinkGenericNasTransport');
INSERT INTO "kpi_title" VALUES (172, 'MOCNGW', 'MOCNGW.33', '{"cn":"UplinkGenericNasTransport","en":"UplinkGenericNasTransport"}', 'UplinkGenericNasTransport', 'UplinkGenericNasTransport');
INSERT INTO "kpi_title" VALUES (173, 'IMS', 'SCSCF.01', '{"cn": "LTE接入注册用户数","en": "UR.SubsLTE.fromVoLTE"}', 'LTE接入注册用户数', 'UR.SubsLTE.fromVoLTE');
INSERT INTO "kpi_title" VALUES (174, 'IMS', 'SCSCF.02', '{"cn": "5G接入注册用户数","en": "UR.Subs5G.fromVo5G"}', '5G接入注册用户数', 'UR.Subs5G.fromVo5G');
INSERT INTO "kpi_title" VALUES (175, 'IMS', 'SCSCF.03', '{"cn": "初始注册成功次数","en": "UR.SuccInitReg"}', '初始注册成功次数', 'VoNR Registration Success');
INSERT INTO "kpi_title" VALUES (176, 'IMS', 'SCSCF.04', '{"cn": "初始注册请求次数","en": "UR.AttInitReg"}', '初始注册请求次数', 'VoNR Registration Request');
INSERT INTO "kpi_title" VALUES (177, 'IMS', 'SCSCF.05', '{"cn": "主叫接通次数","en": "SC.SuccSessionOrig"}', '主叫接通次数', 'MO Call Success');
INSERT INTO "kpi_title" VALUES (178, 'IMS', 'SCSCF.06', '{"cn": "主叫试呼次数","en": "SC.AttSessionOrig"}', '主叫试呼次数', 'MO Call Attempt');
INSERT INTO "kpi_title" VALUES (179, 'IMS', 'SCSCF.07', '{"cn": "被叫接通次数","en": "SC.SuccSessionTerm"}', '被叫接通次数', 'MT Call Success');
INSERT INTO "kpi_title" VALUES (180, 'IMS', 'SCSCF.08', '{"cn": "被叫试呼次数","en": "SC.AttSessionTerm"}', '被叫试呼次数', 'MT Call Attempt');
INSERT INTO "kpi_title" VALUES (181, 'IMS', 'SCSCF.09', '{"cn": "主叫应答次数","en": "SC.AnsSessionOrig"}', '主叫应答次数', 'SC.AnsSessionOrig');
INSERT INTO "kpi_title" VALUES (182, 'IMS', 'SCSCF.10', '{"cn": "主叫早释次数","en": "SC.OrigRelBeforeRing"}', '主叫早释次数', 'SC.OrigRelBeforeRing');
INSERT INTO "kpi_title" VALUES (183, 'IMS', 'SCSCF.11', '{"cn": "主叫振铃早释次数","en": "SC.OrigRelAfterRing"}', '主叫振铃早释次数', 'SC.OrigRelAfterRing');
INSERT INTO "kpi_title" VALUES (184, 'IMS', 'SCSCF.12', '{"cn": "主叫403请求禁止次数","en": "SC.FailSessionOrig.403"}', '主叫403请求禁止次数', 'SC.FailSessionOrig.403');
INSERT INTO "kpi_title" VALUES (185, 'IMS', 'SCSCF.13', '{"cn": "主叫404未找到次数","en": "SC.FailSessionOrig.404"}', '主叫404未找到次数', 'SC.FailSessionOrig.404');
INSERT INTO "kpi_title" VALUES (186, 'IMS', 'SCSCF.14', '{"cn": "主叫408请求超时次数","en": "SC.FailSessionOrig.408"}', '主叫408请求超时次数', 'SC.FailSessionOrig.408');
INSERT INTO "kpi_title" VALUES (187, 'IMS', 'SCSCF.15', '{"cn": "主叫480久叫不应次","en": "SC.FailSessionOrig.480"}', '主叫480久叫不应次', 'SC.FailSessionOrig.480');
INSERT INTO "kpi_title" VALUES (188, 'IMS', 'SCSCF.16', '{"cn": "主叫484Request-URI不完整次","en": "SC.FailSessionOrig.484"}', '主叫484Request-URI不完整次', 'SC.FailSessionOrig.484');
INSERT INTO "kpi_title" VALUES (189, 'IMS', 'SCSCF.17', '{"cn": "主叫486用户忙次数","en": "SC.FailSessionOrig.486"}', '主叫486用户忙次数', 'SC.FailSessionOrig.486');
INSERT INTO "kpi_title" VALUES (190, 'IMS', 'SCSCF.18', '{"cn": "主叫487请求终止次数","en": "SC.FailSessionOrig.487"}', '主叫487请求终止次数', 'SC.FailSessionOrig.487');
INSERT INTO "kpi_title" VALUES (191, 'IMS', 'SCSCF.19', '{"cn": "主叫600用户忙次数","en": "SC.FailSessionOrig.600"}', '主叫600用户忙次数', 'SC.FailSessionOrig.600');
INSERT INTO "kpi_title" VALUES (192, 'IMS', 'SCSCF.20', '{"cn": "主叫603用户拒接次数","en": "SC.FailSessionOrig.603"}', '主叫603用户拒接次数', 'SC.FailSessionOrig.603');
INSERT INTO "kpi_title" VALUES (193, 'IMS', 'SCSCF.21', '{"cn": "主叫604用户信息不存在次数","en": "SC.FailSessionOrig.604"}', '主叫604用户信息不存在次数', 'SC.FailSessionOrig.604');
INSERT INTO "kpi_title" VALUES (194, 'IMS', 'SCSCF.22', '{"cn": "被叫应答次数","en": "SC.AnsSessionTerm"}', '被叫应答次数', 'SC.AnsSessionTerm');
INSERT INTO "kpi_title" VALUES (195, 'IMS', 'SCSCF.23', '{"cn": "被叫早释次","en": "SC.TermiRelBeforeRing"}', '被叫早释次', 'SC.TermiRelBeforeRing');
INSERT INTO "kpi_title" VALUES (196, 'IMS', 'SCSCF.24', '{"cn": "被叫振铃早释次数","en": "SC.TermiRelAfterRing"}', '被叫振铃早释次数', 'SC.TermiRelAfterRing');
INSERT INTO "kpi_title" VALUES (197, 'IMS', 'SCSCF.25', '{"cn": "被叫403请求禁止次数","en": "SC.FailSessionTerm.403"}', '被叫403请求禁止次数', 'SC.FailSessionTerm.403');
INSERT INTO "kpi_title" VALUES (198, 'IMS', 'SCSCF.26', '{"cn": "被叫404未找到次数","en": "SC.FailSessionTerm.404"}', '被叫404未找到次数', 'SC.FailSessionTerm.404');
INSERT INTO "kpi_title" VALUES (199, 'IMS', 'SCSCF.27', '{"cn": "被叫408请求超时次数","en": "SC.FailSessionTerm.408"}', '被叫408请求超时次数', 'SC.FailSessionTerm.408');
INSERT INTO "kpi_title" VALUES (200, 'IMS', 'SCSCF.28', '{"cn": "被叫480久叫不应次数","en": "SC.FailSessionTerm.480"}', '被叫480久叫不应次数', 'SC.FailSessionTerm.480');
INSERT INTO "kpi_title" VALUES (201, 'IMS', 'SCSCF.29', '{"cn": "被叫484Request-URI不完整次数","en": "SC.FailSessionTerm.484"}', '被叫484Request-URI不完整次数', 'SC.FailSessionTerm.484');
INSERT INTO "kpi_title" VALUES (202, 'IMS', 'SCSCF.30', '{"cn": "被叫486用户忙次数","en": "SC.FailSessionTerm.486"}', '被叫486用户忙次数', 'SC.FailSessionTerm.486');
INSERT INTO "kpi_title" VALUES (203, 'IMS', 'SCSCF.31', '{"cn": "被叫487请求终止次数","en": "SC.FailSessionTerm.487"}', '被叫487请求终止次数', 'SC.FailSessionTerm.487');
INSERT INTO "kpi_title" VALUES (204, 'IMS', 'SCSCF.32', '{"cn": "被叫600用户忙次数","en": "SC.FailSessionTerm.600"}', '被叫600用户忙次数', 'SC.FailSessionTerm.600');
INSERT INTO "kpi_title" VALUES (205, 'IMS', 'SCSCF.33', '{"cn": "被叫603用户拒接次数","en": "SC.FailSessionTerm.603"}', '被叫603用户拒接次数', 'SC.FailSessionTerm.603');
INSERT INTO "kpi_title" VALUES (206, 'IMS', 'SCSCF.34', '{"cn": "被叫604用户信息不存在次数","en": "SC.FailSessionTerm.604"}', '被叫604用户信息不存在次数', 'SC.FailSessionTerm.604');
INSERT INTO "kpi_title" VALUES (207, 'PCF', 'PCF.01', '{"cn": "在线N7会话数", "en": "PCF.SmAssocNbrMean"}', '在线N7会话数', 'PCF.SmAssocNbrMean');
INSERT INTO "kpi_title" VALUES (208, 'PCF', 'PCF.02', '{"cn": "SM策略关联建立成功次数", "en": "PCF.PolicySmAssocCreateSucc"}', 'SM策略关联建立成功次数', 'PCF.PolicySmAssocCreateSucc');
INSERT INTO "kpi_title" VALUES (209, 'PCF', 'PCF.03', '{"cn": "SM策略关联建立请求次数", "en": "PCF.PolicySmAssocCreateReq"}', 'SM策略关联建立请求次数', 'PCF.PolicySmAssocCreateReq');
INSERT INTO "kpi_title" VALUES (210, 'PCF', 'PCF.04', '{"cn": "SM策略关联更新成功次数", "en": "PCF.PolicySmAssocUpdateSucc"}', 'SM策略关联更新成功次数', 'PCF.PolicySmAssocUpdateSucc');
INSERT INTO "kpi_title" VALUES (211, 'PCF', 'PCF.05', '{"cn": "SM策略关联更新请求次数", "en": "PCF.PolicySmAssocUpdateReq"}', 'SM策略关联更新请求次数', 'PCF.PolicySmAssocUpdateReq');
INSERT INTO "kpi_title" VALUES (212, 'PCF', 'PCF.06', '{"cn": "在线Gx会话数", "en": "SM.SessionNbrMean"}', '在线Gx会话数', 'SM.SessionNbrMean');
INSERT INTO "kpi_title" VALUES (213, 'PCF', 'PCF.07', '{"cn": "在线Rx会话数", "en": "SM.RxSessionMean"}', '在线Rx会话数', 'SM.RxSessionMean');
INSERT INTO "kpi_title" VALUES (214, 'PCF', 'PCF.08', '{"cn": "PCRF策略控制发起成功次数", "en": "DIAM.CcInitialSuccess"}', 'PCRF策略控制发起成功次数', 'DIAM.CcInitialSuccess');
INSERT INTO "kpi_title" VALUES (215, 'PCF', 'PCF.09', '{"cn": "PCRF策略控制发起请求次数", "en": "DIAM.CcInitialRequest"}', 'PCRF策略控制发起请求次数', 'DIAM.CcInitialRequest');
INSERT INTO "kpi_title" VALUES (216, 'PCF', 'PCF.10', '{"cn": "应用会话授权成功次数", "en": "DIAM.AuthSucc"}', '应用会话授权成功次数', 'DIAM.AuthSucc');
INSERT INTO "kpi_title" VALUES (217, 'PCF', 'PCF.11', '{"cn": "应用会话授权尝试次数", "en": "DIAM.AuthRequest"}', '应用会话授权尝试次数', 'DIAM.AuthRequest');
INSERT INTO "kpi_title" VALUES (218, 'PCF', 'PCF.12', '{"cn": "PCRF策略控制更新成功次数", "en": "DIAM.CcUpdateSuccess"}', 'PCRF策略控制更新成功次数', 'DIAM.CcUpdateSuccess');
INSERT INTO "kpi_title" VALUES (219, 'PCF', 'PCF.13', '{"cn": "PCRF策略控制更新请求次数", "en": "DIAM.CcUpdateRequest"}', 'PCRF策略控制更新请求次数', 'DIAM.CcUpdateRequest');
INSERT INTO "kpi_title" VALUES (220, 'SMSC', 'SMSC.A.01', '{"cn": "MS到SMSC短信请求次数", "en": "SMSC.MStoSMSCAtt"}', 'MS到SMSC短信请求次数', 'SMSC.MStoSMSCAtt');
INSERT INTO "kpi_title" VALUES (221, 'SMSC', 'SMSC.A.02', '{"cn": "MS到SMSC短信成功次数", "en": "SMSC.MStoSMSCSucc"}', 'MS到SMSC短信成功次数', 'SMSC.MStoSMSCSucc');
INSERT INTO "kpi_title" VALUES (222, 'SMSC', 'SMSC.A.03', '{"cn": "MS到SMSC短信失败次数", "en": "SMSC.MStoSMSCFail"}', 'MS到SMSC短信失败次数', 'SMSC.MStoSMSCFail');
INSERT INTO "kpi_title" VALUES (223, 'SMSC', 'SMSC.A.04', '{"cn": "MS到SMSC短信字节数", "en": "SMSC.MStoSMSCBytes"}', 'MS到SMSC短信字节数', 'SMSC.MStoSMSCBytes');
INSERT INTO "kpi_title" VALUES (224, 'SMSC', 'SMSC.A.05', '{"cn": "VSS到SMSC短信请求次数", "en": "SMSC.VSStoSMSCAtt"}', 'VSS到SMSC短信请求次数', 'SMSC.VSStoSMSCAtt');
INSERT INTO "kpi_title" VALUES (225, 'SMSC', 'SMSC.A.06', '{"cn": "VSS到SMSC短信成功次数", "en": "SMSC.VSStoSMSCSucc"}', 'VSS到SMSC短信成功次数', 'SMSC.VSStoSMSCSucc');
INSERT INTO "kpi_title" VALUES (226, 'SMSC', 'SMSC.A.07', '{"cn": "VSS到SMSC短信失败次数", "en": "SMSC.VSStoSMSCFail"}', 'VSS到SMSC短信失败次数', 'SMSC.VSStoSMSCFail');
INSERT INTO "kpi_title" VALUES (227, 'SMSC', 'SMSC.A.08', '{"cn": "VSS到SMSC短信字节数", "en": "SMSC.VSStoSMSCBytes"}', 'VSS到SMSC短信字节数', 'SMSC.VSStoSMSCBytes');
INSERT INTO "kpi_title" VALUES (228, 'SMSC', 'SMSC.A.09', '{"cn": "PPS到SMSC短信请求次数", "en": "SMSC.PPStoSMSCAtt"}', 'PPS到SMSC短信请求次数', 'SMSC.PPStoSMSCAtt');
INSERT INTO "kpi_title" VALUES (229, 'SMSC', 'SMSC.A.10', '{"cn": "PPS到SMSC短信成功次数", "en": "SMSC.PPStoSMSCSucc"}', 'PPS到SMSC短信成功次数', 'SMSC.PPStoSMSCSucc');
INSERT INTO "kpi_title" VALUES (230, 'SMSC', 'SMSC.A.11', '{"cn": "PPS到SMSC短信失败次数", "en": "SMSC.PPStoSMSCFail"}', 'PPS到SMSC短信失败次数', 'SMSC.PPStoSMSCFail');
INSERT INTO "kpi_title" VALUES (231, 'SMSC', 'SMSC.A.12', '{"cn": "PPS到SMSC短信字节数", "en": "SMSC.PPStoSMSCBytes"}', 'PPS到SMSC短信字节数', 'SMSC.PPStoSMSCBytes');
INSERT INTO "kpi_title" VALUES (232, 'SMSC', 'SMSC.A.13', '{"cn": "SMPP到SMSC短信请求次数", "en": "SMSC.SMPPtoSMSCAtt"}', 'SMPP到SMSC短信请求次数', 'SMSC.SMPPtoSMSCAtt');
INSERT INTO "kpi_title" VALUES (233, 'SMSC', 'SMSC.A.14', '{"cn": "SMPP到SMSC短信成功次数", "en": "SMSC.SMPPtoSMSCSucc"}', 'SMPP到SMSC短信成功次数', 'SMSC.SMPPtoSMSCSucc');
INSERT INTO "kpi_title" VALUES (234, 'SMSC', 'SMSC.A.15', '{"cn": "SMPP到SMSC短信失败次数", "en": "SMSC.SMPPtoSMSCFail"}', 'SMPP到SMSC短信失败次数', 'SMSC.SMPPtoSMSCFail');
INSERT INTO "kpi_title" VALUES (235, 'SMSC', 'SMSC.A.16', '{"cn": "SMPP到SMSC短信字节数", "en": "SMSC.SMPPtoSMSCBytes"}', 'SMPP到SMSC短信字节数', 'SMSC.SMPPtoSMSCBytes');
INSERT INTO "kpi_title" VALUES (236, 'SMSC', 'SMSC.A.17', '{"cn": "SMSC到MS短信请求次数", "en": "SMSC.SMSCtoMSAtt"}', 'SMSC到MS短信请求次数', 'SMSC.SMSCtoMSAtt');
INSERT INTO "kpi_title" VALUES (237, 'SMSC', 'SMSC.A.18', '{"cn": "SMSC到MS短信成功次数", "en": "SMSC.SMSCtoMSSucc"}', 'SMSC到MS短信成功次数', 'SMSC.SMSCtoMSSucc');
INSERT INTO "kpi_title" VALUES (238, 'SMSC', 'SMSC.A.19', '{"cn": "SMSC到MS短信失败次数", "en": "SMSC.SMSCtoMSFail"}', 'SMSC到MS短信失败次数', 'SMSC.SMSCtoMSFail');
INSERT INTO "kpi_title" VALUES (239, 'SMSC', 'SMSC.A.20', '{"cn": "SMSC到MS短信字节数", "en": "SMSC.SMSCtoMSBytes"}', 'SMSC到MS短信字节数', 'SMSC.SMSCtoMSBytes');
INSERT INTO "kpi_title" VALUES (240, 'SMSC', 'SMSC.A.21', '{"cn": "SMSC到VSS短信请求次数", "en": "SMSC.SMSCtoVSSAtt"}', 'SMSC到VSS短信请求次数', 'SMSC.SMSCtoVSSAtt');
INSERT INTO "kpi_title" VALUES (241, 'SMSC', 'SMSC.A.22', '{"cn": "SMSC到VSS短信成功次数", "en": "SMSC.SMSCtoVSSucc"}', 'SMSC到VSS短信成功次数', 'SMSC.SMSCtoVSSucc');
INSERT INTO "kpi_title" VALUES (242, 'SMSC', 'SMSC.A.23', '{"cn": "SMSC到VSS短信失败次数", "en": "SMSC.SMSCtoVSSFail"}', 'SMSC到VSS短信失败次数', 'SMSC.SMSCtoVSSFail');
INSERT INTO "kpi_title" VALUES (243, 'SMSC', 'SMSC.A.24', '{"cn": "SMSC到VSS短信字节数", "en": "SMSC.SMSCtoVSSBytes"}', 'SMSC到VSS短信字节数', 'SMSC.SMSCtoVSSBytes');
INSERT INTO "kpi_title" VALUES (244, 'SMSC', 'SMSC.A.25', '{"cn": "SMSC到PPS短信请求次数", "en": "SMSC.SMSCtoPPSAtt"}', 'SMSC到PPS短信请求次数', 'SMSC.SMSCtoPPSAtt');
INSERT INTO "kpi_title" VALUES (245, 'SMSC', 'SMSC.A.26', '{"cn": "SMSC到PPS短信成功次数", "en": "SMSC.SMSCtoPPSucc"}', 'SMSC到PPS短信成功次数', 'SMSC.SMSCtoPPSucc');
INSERT INTO "kpi_title" VALUES (246, 'SMSC', 'SMSC.A.27', '{"cn": "SMSC到PPS短信失败次数", "en": "SMSC.SMSCtoPPSFail"}', 'SMSC到PPS短信失败次数', 'SMSC.SMSCtoPPSFail');
INSERT INTO "kpi_title" VALUES (247, 'SMSC', 'SMSC.A.28', '{"cn": "SMSC到PPS短信字节数", "en": "SMSC.SMSCtoPPSBytes"}', 'SMSC到PPS短信字节数', 'SMSC.SMSCtoPPSBytes');
INSERT INTO "kpi_title" VALUES (248, 'SMSC', 'SMSC.A.29', '{"cn": "SMSC到SMPP短信请求次数", "en": "SMSC.SMSCtoSMPPAtt"}', 'SMSC到SMPP短信请求次数', 'SMSC.SMSCtoSMPPAtt');
INSERT INTO "kpi_title" VALUES (249, 'SMSC', 'SMSC.A.30', '{"cn": "SMSC到SMPP短信成功次数", "en": "SMSC.SMSCtoSMPPucc"}', 'SMSC到SMPP短信成功次数', 'SMSC.SMSCtoSMPPucc');
INSERT INTO "kpi_title" VALUES (250, 'SMSC', 'SMSC.A.31', '{"cn": "SMSC到SMPP短信失败次数", "en": "SMSC.SMSCtoSMPPFail"}', 'SMSC到SMPP短信失败次数', 'SMSC.SMSCtoSMPPFail');
INSERT INTO "kpi_title" VALUES (251, 'SMSC', 'SMSC.A.32', '{"cn": "SMSC到SMPP短信字节数", "en": "SMSC.SMSCtoSMPPBytes"}', 'SMSC到SMPP短信字节数', 'SMSC.SMSCtoSMPPBytes');
INSERT INTO "kpi_title" VALUES (252, 'CBC', 'CBC.A.01', '{"cn": "CBC 发起 Create Write 消息成功", "en": "WarningReqSucc"}', 'CBC 发起 Create Write 消息成功', 'WarningReqSucc');
INSERT INTO "kpi_title" VALUES (253, 'CBC', 'CBC.A.02', '{"cn": "CBC 发起 Create Write 消息失败", "en": "WarningReqFail"}', 'CBC 发起 Create Write 消息失败', 'WarningReqFail');
INSERT INTO "kpi_title" VALUES (254, 'CBC', 'CBC.A.03', '{"cn": "CBC 发起 Cancel Write 消息成功", "en": "WarningCancelSucc"}', 'CBC 发起 Cancel Write 消息成功', 'WarningCancelSucc');
INSERT INTO "kpi_title" VALUES (255, 'CBC', 'CBC.A.04', '{"cn": "CBC 发起 Cancel Write 消息失败", "en": "WarningCancelFail"}', 'CBC 发起 Cancel Write 消息失败', 'WarningCancelFail');
INSERT INTO "kpi_title" VALUES (256, 'HLR', 'HLR.A.001', NULL, '鉴权信息请求次数', 'AuthReqTotalNum');
INSERT INTO "kpi_title" VALUES (257, 'HLR', 'HLR.A.002', NULL, '鉴权信息请求成功次数', 'AuthSuccTotalNum');
INSERT INTO "kpi_title" VALUES (258, 'HLR', 'HLR.A.003', NULL, '鉴权请求失败:缺参数', 'AuthFailByMissPara');
INSERT INTO "kpi_title" VALUES (259, 'HLR', 'HLR.A.004', NULL, '鉴权请求失败:系统错误', 'AuthFailBySysFail');
INSERT INTO "kpi_title" VALUES (260, 'HLR', 'HLR.A.005', NULL, '鉴权请求失败:非期望的参数值', 'AuthFailByUnexptData');
INSERT INTO "kpi_title" VALUES (261, 'HLR', 'HLR.A.006', NULL, '鉴权请求失败:未知用户', 'AuthFailByUnknownUser');
INSERT INTO "kpi_title" VALUES (262, 'HLR', 'HLR.A.007', NULL, '鉴权失败报告次数', 'AuthFailReportTotalNum');
INSERT INTO "kpi_title" VALUES (263, 'HLR', 'HLR.A.008', NULL, '鉴权失败报告(错误的网络签名)次数', 'AuthFailReportByErrNetSign');
INSERT INTO "kpi_title" VALUES (264, 'HLR', 'HLR.A.009', NULL, '鉴权失败报告(错误的用户响应)次数', 'AuthFailReportByErrUserRsp');
INSERT INTO "kpi_title" VALUES (265, 'HLR', 'HLR.A.010', NULL, '登记请求次数', 'LuReqTotalNum');
INSERT INTO "kpi_title" VALUES (266, 'HLR', 'HLR.A.011', NULL, '登记成功次数', 'LuSuccTotalNum');
INSERT INTO "kpi_title" VALUES (267, 'HLR', 'HLR.A.012', NULL, '登记失败:复制手机', 'LuFailByDuplicUnit');
INSERT INTO "kpi_title" VALUES (268, 'HLR', 'HLR.A.013', NULL, '登记失败无效ESN', 'LuFailByInvalidESN');
INSERT INTO "kpi_title" VALUES (269, 'HLR', 'HLR.A.014', NULL, '登记失败:缺鉴权参数', 'LuFailByMissAuthPara');
INSERT INTO "kpi_title" VALUES (270, 'HLR', 'HLR.A.015', NULL, '登记失败在这个MSC中不能使用', 'LuFailByMscNotAllow');
INSERT INTO "kpi_title" VALUES (271, 'HLR', 'HLR.A.016', NULL, '登记失败:终端类型不匹配', 'LuFailByUeTypeMismatch');
INSERT INTO "kpi_title" VALUES (272, 'HLR', 'HLR.A.017', NULL, '登记失败:未分配号码的手机', 'LuFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (273, 'HLR', 'HLR.A.018', NULL, '登记失败:不确定', 'LuFailByUnKnown');
INSERT INTO "kpi_title" VALUES (274, 'HLR', 'HLR.A.019', NULL, '注销登记次数', 'CancelLuReqTotalNum');
INSERT INTO "kpi_title" VALUES (275, 'HLR', 'HLR.A.020', NULL, '注销登记成功次数', 'CancelLuSuccTotalNum');
INSERT INTO "kpi_title" VALUES (276, 'HLR', 'HLR.A.021', NULL, '注销失败:系统错误', 'CancelLuFailBySysFail');
INSERT INTO "kpi_title" VALUES (277, 'HLR', 'HLR.A.022', NULL, '注销失败:缺参数', 'CancelLuFailByMissPara');
INSERT INTO "kpi_title" VALUES (278, 'HLR', 'HLR.A.023', NULL, '移动台去活次数', 'MsPurgeReqTotalNum');
INSERT INTO "kpi_title" VALUES (279, 'HLR', 'HLR.A.024', NULL, '移动台去活成功次数', 'MsPurgeSuccTotalNum');
INSERT INTO "kpi_title" VALUES (280, 'HLR', 'HLR.A.025', NULL, '移动台去活:系统错误', 'MsPurgeFailBySysFail');
INSERT INTO "kpi_title" VALUES (281, 'HLR', 'HLR.A.026', NULL, '移动台去活:非期望的参数值', 'MsPurgeFailByUnexptPara');
INSERT INTO "kpi_title" VALUES (282, 'HLR', 'HLR.A.027', NULL, '移动台去活:未知用户', 'MsPurgeFailByUnknownUser');
INSERT INTO "kpi_title" VALUES (283, 'HLR', 'HLR.A.028', NULL, 'GPRS登记请求次数', 'GprsLuReqTotalNum');
INSERT INTO "kpi_title" VALUES (284, 'HLR', 'HLR.A.029', NULL, 'GPRS登记请求成功次数', 'GprsLuSuccTotalNum');
INSERT INTO "kpi_title" VALUES (285, 'HLR', 'HLR.A.030', NULL, 'GPRS去登记次数', 'GprsPurgeReqTotalNum');
INSERT INTO "kpi_title" VALUES (286, 'HLR', 'HLR.A.031', NULL, 'GPRS去登记成功次数', 'GprsPurgeSuccTotalNum');
INSERT INTO "kpi_title" VALUES (287, 'HLR', 'HLR.A.032', NULL, 'GPRS注销登记次数', 'GprsCancelLuReqTotalNum');
INSERT INTO "kpi_title" VALUES (288, 'HLR', 'HLR.A.033', NULL, 'GPRS注销登记成功次数', 'GprsCancelLuSuccTotalNum');
INSERT INTO "kpi_title" VALUES (289, 'HLR', 'HLR.A.034', NULL, 'GPRS路由请求次数', 'GprsRoutInfoReqTotalNum');
INSERT INTO "kpi_title" VALUES (290, 'HLR', 'HLR.A.035', NULL, 'GPRS用户激活失败报告次数', 'GprsActiveFailReportTotalNum');
INSERT INTO "kpi_title" VALUES (291, 'HLR', 'HLR.A.036', NULL, 'GPRS用户激活失败报告成功次数', 'GprsActiveFailReportSuccTotalNum');
INSERT INTO "kpi_title" VALUES (292, 'HLR', 'HLR.A.037', NULL, 'GPRS用户激活失败报告失败缺参数', 'GprsActiveFailReportFailByMissPara');
INSERT INTO "kpi_title" VALUES (293, 'HLR', 'HLR.A.038', NULL, 'GPRS用户激活失败报告失败系统错误', 'GprsActiveFailReportFailBySysFail');
INSERT INTO "kpi_title" VALUES (294, 'HLR', 'HLR.A.039', NULL, 'GPRS用户激活失败报告失败非期望的参数值', 'GprsActiveFailReportFailByUnexptPara');
INSERT INTO "kpi_title" VALUES (295, 'HLR', 'HLR.A.040', NULL, 'GPRS用户激活失败报告失败未知用户', 'GprsActiveFailReportFailByUnKnownUser');
INSERT INTO "kpi_title" VALUES (296, 'HLR', 'HLR.A.041', NULL, '发起CFU业务登记且激活次数', 'CfuActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (297, 'HLR', 'HLR.A.042', NULL, 'CFU业务登记且激活成功次数', 'CfuActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (298, 'HLR', 'HLR.A.043', NULL, 'CFU登记失败MS忙', 'CfuRegFailByMsBusy');
INSERT INTO "kpi_title" VALUES (299, 'HLR', 'HLR.A.044', NULL, 'CFU登记失败不允许将呼叫终接到MS', 'CfuRegFailByMsDenied');
INSERT INTO "kpi_title" VALUES (300, 'HLR', 'HLR.A.045', NULL, 'CFU登记失败MS去登记状态', 'CfuRegFailByMsErase');
INSERT INTO "kpi_title" VALUES (301, 'HLR', 'HLR.A.046', NULL, 'CFU登记失败无寻呼响应', 'CfuRegFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (302, 'HLR', 'HLR.A.047', NULL, 'CFU登记失败系统错误', 'CfuRegFailBySysFail');
INSERT INTO "kpi_title" VALUES (303, 'HLR', 'HLR.A.048', NULL, 'CFU登记失败未分配电话号码', 'CfuRegFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (304, 'HLR', 'HLR.A.049', NULL, 'CFU登记失败不可用', 'CfuRegFailByUnavailable');
INSERT INTO "kpi_title" VALUES (305, 'HLR', 'HLR.A.050', NULL, '发起CFU业务去活次数', 'CfuDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (306, 'HLR', 'HLR.A.051', NULL, 'CFU业务去活成功次数', 'CfuDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (307, 'HLR', 'HLR.A.052', NULL, 'CFU去活失败MS忙', 'CfuDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (308, 'HLR', 'HLR.A.053', NULL, 'CFU去活失败不允许将呼叫终接到MS', 'CfuDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (309, 'HLR', 'HLR.A.054', NULL, 'CFU去活失败未分配电话号码', 'CfuDeActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (310, 'HLR', 'HLR.A.055', NULL, 'CFU去活失败MS去登记状态', 'CfuDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (311, 'HLR', 'HLR.A.056', NULL, 'CFU去活失败无寻呼响应', 'CfuDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (312, 'HLR', 'HLR.A.057', NULL, 'CFU去活失败系统错误', 'CfuDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (313, 'HLR', 'HLR.A.058', NULL, 'CFU去活失败不可用', 'CfuDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (314, 'HLR', 'HLR.A.059', NULL, '发起CFB业务登记且激活次数', 'CfbActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (315, 'HLR', 'HLR.A.060', NULL, 'CFB业务登记且激活成功次数', 'CfbActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (316, 'HLR', 'HLR.A.061', NULL, 'CFB登记失败MS忙', 'CfbRegFailByMsBusy');
INSERT INTO "kpi_title" VALUES (317, 'HLR', 'HLR.A.062', NULL, 'CFB登记失败不允许将呼叫终接到MS', 'CfbRegFailByMsDenied');
INSERT INTO "kpi_title" VALUES (318, 'HLR', 'HLR.A.063', NULL, 'CFB登记失败MS去登记状态', 'CfbRegFailByMsErase');
INSERT INTO "kpi_title" VALUES (319, 'HLR', 'HLR.A.064', NULL, 'CFB登记失败无寻呼响应', 'CfbRegFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (320, 'HLR', 'HLR.A.065', NULL, 'CFB登记失败系统错误', 'CfbRegFailBySysFail');
INSERT INTO "kpi_title" VALUES (321, 'HLR', 'HLR.A.066', NULL, 'CFB登记失败未分配电话号码', 'CfbRegFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (322, 'HLR', 'HLR.A.067', NULL, 'CFB登记失败不可用', 'CfbRegFailByUnavailable');
INSERT INTO "kpi_title" VALUES (323, 'HLR', 'HLR.A.068', NULL, '发起CFB业务去活次数', 'CfbDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (324, 'HLR', 'HLR.A.069', NULL, 'CFB业务去活成功次数', 'CfbDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (325, 'HLR', 'HLR.A.070', NULL, 'CFB去活失败MS忙', 'CfbDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (326, 'HLR', 'HLR.A.071', NULL, 'CFB去活失败不允许将呼叫终接到MS', 'CfbDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (327, 'HLR', 'HLR.A.072', NULL, 'CFB去活失败MS去登记状态', 'CfbDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (328, 'HLR', 'HLR.A.073', NULL, 'CFB去活失败无寻呼响应', 'CfbDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (329, 'HLR', 'HLR.A.074', NULL, 'CFB去活失败系统错误', 'CfbDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (330, 'HLR', 'HLR.A.075', NULL, 'CFB去活失败未分配电话号码', 'CfbDeActvFailByUnAssignMsisdn ');
INSERT INTO "kpi_title" VALUES (331, 'HLR', 'HLR.A.076', NULL, 'CFB去活失败不可用', 'CfbDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (332, 'HLR', 'HLR.A.077', NULL, '发起CFNRy业务登记且激活次数', 'CfnryActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (333, 'HLR', 'HLR.A.078', NULL, 'CFNRy业务登记且激活成功次数', 'CfnryActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (334, 'HLR', 'HLR.A.079', NULL, 'CFNRy登记失败MS忙', 'CfnryRegFailByMsBusy');
INSERT INTO "kpi_title" VALUES (335, 'HLR', 'HLR.A.080', NULL, 'CFNRy登记失败不允许将呼叫终接到MS', 'CfnryRegFailByMsDenied');
INSERT INTO "kpi_title" VALUES (336, 'HLR', 'HLR.A.081', NULL, 'CFNRy登记失败MS去登记状态', 'CfnryRegFailByMsErase');
INSERT INTO "kpi_title" VALUES (337, 'HLR', 'HLR.A.082', NULL, 'CFNRy登记失败无寻呼响应', 'CfnryRegFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (338, 'HLR', 'HLR.A.083', NULL, 'CFNRy登记失败系统错误', 'CfnryRegFailBySysFail');
INSERT INTO "kpi_title" VALUES (339, 'HLR', 'HLR.A.084', NULL, 'CFNRy登记失败未分配电话号码', 'CfnryRegFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (340, 'HLR', 'HLR.A.085', NULL, 'CFNRy登记失败不可用', 'CfnryRegFailByUnavailable');
INSERT INTO "kpi_title" VALUES (341, 'HLR', 'HLR.A.086', NULL, '发起CFNRy业务去活次数', 'CfnryDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (342, 'HLR', 'HLR.A.087', NULL, 'CFNRy业务去活成功次数', 'CfnryDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (343, 'HLR', 'HLR.A.088', NULL, 'CFNRy去活失败MS忙', 'CfnryDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (344, 'HLR', 'HLR.A.089', NULL, 'CFNRy去活失败不允许将呼叫终接到MS', 'CfnryDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (345, 'HLR', 'HLR.A.090', NULL, 'CFNRy去活失败MS去登记状态', 'CfnryDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (346, 'HLR', 'HLR.A.091', NULL, 'CFNRy去活失败无寻呼响应', 'CfnryDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (347, 'HLR', 'HLR.A.092', NULL, 'CFNRy去活失败系统错误', 'CfnryDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (348, 'HLR', 'HLR.A.093', NULL, 'CFNRy去活失败未分配电话号码', 'CfnryDeActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (349, 'HLR', 'HLR.A.094', NULL, 'CFNRy去活失败不可用', 'CfnryDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (350, 'HLR', 'HLR.A.095', NULL, '发起CFNRc)业务登记且激活次数', 'CfnrcActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (351, 'HLR', 'HLR.A.096', NULL, '(CFNRc)业务登记且激活成功次数', 'CfnrcActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (352, 'HLR', 'HLR.A.097', NULL, '(CFNRc)登记失败MS忙', 'CfnrcRegFailByMsBusy');
INSERT INTO "kpi_title" VALUES (353, 'HLR', 'HLR.A.098', NULL, '(CFNRc)登记失败不允许将呼叫终接到MS', 'CfnrcRegFailByMsDenied');
INSERT INTO "kpi_title" VALUES (354, 'HLR', 'HLR.A.099', NULL, '(CFNRc)登记失败MS去登记状态', 'CfnrcRegFailByMsErase');
INSERT INTO "kpi_title" VALUES (355, 'HLR', 'HLR.A.100', NULL, '(CFNRc)登记失败:无寻呼响应', 'CfnrcRegFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (356, 'HLR', 'HLR.A.101', NULL, '(CFNRc)登记失败:系统错误', 'CfnrcRegFailBySysFail');
INSERT INTO "kpi_title" VALUES (357, 'HLR', 'HLR.A.102', NULL, '(CFNRc)登记失败:未分配电话号码', 'CfnrcRegFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (358, 'HLR', 'HLR.A.103', NULL, '(CFNRc)登记失败:不可用', 'CfnrcRegFailByUnavailable');
INSERT INTO "kpi_title" VALUES (359, 'HLR', 'HLR.A.104', NULL, '发起CFNRc)业务去活次数', 'CfnrcDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (360, 'HLR', 'HLR.A.105', NULL, 'CFNRc业务去活成功次数', 'CfnrcDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (361, 'HLR', 'HLR.A.106', NULL, 'CFNRc)去活失败MS忙', 'CfnrcDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (362, 'HLR', 'HLR.A.107', NULL, 'CFNRc)去活失败不允许将呼叫终接到MS', 'CfnrcDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (363, 'HLR', 'HLR.A.108', NULL, 'CFNRc)去活失败MS去登记状态', 'CfnrcDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (364, 'HLR', 'HLR.A.109', NULL, 'CFNRc)去活失败:无寻呼响应', 'CfnrcDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (365, 'HLR', 'HLR.A.110', NULL, 'CFNRc)去活失败:系统错误', 'CfnrcDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (366, 'HLR', 'HLR.A.111', NULL, 'CFNRc)去活失败:未分配电话号码', 'CfnrcDeActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (367, 'HLR', 'HLR.A.112', NULL, 'CFNRc)去活失败:不可用', 'CfnrcDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (368, 'HLR', 'HLR.A.113', NULL, '发起CW业务激活次数', 'CwActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (369, 'HLR', 'HLR.A.114', NULL, 'CW业务激活成功次数', 'CwActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (370, 'HLR', 'HLR.A.115', NULL, 'CW激活失败MS忙', 'CwActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (371, 'HLR', 'HLR.A.116', NULL, 'CW激活失败不允许将呼叫终接到MS', 'CwActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (372, 'HLR', 'HLR.A.117', NULL, 'CW激活失败MS去登记状态', 'CwActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (373, 'HLR', 'HLR.A.118', NULL, 'CW激活失败无寻呼响应', 'CwActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (374, 'HLR', 'HLR.A.119', NULL, 'CW激活失败系统错误', 'CwActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (375, 'HLR', 'HLR.A.120', NULL, 'CW激活失败未分配电话号码', 'CwActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (376, 'HLR', 'HLR.A.121', NULL, 'CW激活失败不可用', 'CwActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (377, 'HLR', 'HLR.A.122', NULL, '发起CW业务去活次数', 'CwDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (378, 'HLR', 'HLR.A.123', NULL, 'CW业务去活成功次数', 'CwDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (379, 'HLR', 'HLR.A.124', NULL, 'CW去活失败MS忙', 'CwDeActvFailByMsBusy');
INSERT INTO "kpi_title" VALUES (380, 'HLR', 'HLR.A.125', NULL, 'CW去活失败不允许将呼叫终接到MS', 'CwDeActvFailByMsDenied');
INSERT INTO "kpi_title" VALUES (381, 'HLR', 'HLR.A.126', NULL, 'CW去活失败MS去登记状态', 'CwDeActvFailByMsErase');
INSERT INTO "kpi_title" VALUES (382, 'HLR', 'HLR.A.127', NULL, 'CW去活失败无寻呼响应', 'CwDeActvFailByNoPagingResp');
INSERT INTO "kpi_title" VALUES (383, 'HLR', 'HLR.A.128', NULL, 'CW去活失败系统错误', 'CwDeActvFailBySysFail');
INSERT INTO "kpi_title" VALUES (384, 'HLR', 'HLR.A.129', NULL, 'CW去活失败未分配电话号码', 'CwDeActvFailByUnAssignMsisdn');
INSERT INTO "kpi_title" VALUES (385, 'HLR', 'HLR.A.130', NULL, 'CW去活失败不可用', 'CwDeActvFailByUnavailable');
INSERT INTO "kpi_title" VALUES (386, 'HLR', 'HLR.A.131', NULL, '发起前转业务去活次数', 'CFDeActvReqTotalNum');
INSERT INTO "kpi_title" VALUES (387, 'HLR', 'HLR.A.132', NULL, '前转业务去活成功次数', 'CFDeActvSuccTotalNum');
INSERT INTO "kpi_title" VALUES (388, 'HLR', 'HLR.A.133', NULL, '发起补充业务登记次数', 'SSRegReqTotalNum');
INSERT INTO "kpi_title" VALUES (389, 'HLR', 'HLR.A.134', NULL, '发起补充业务登记成功次数', 'SSRegSuccTotalNum');
INSERT INTO "kpi_title" VALUES (390, 'HLR', 'HLR.A.135', NULL, '获取路由尝试次数', 'RouteInfoReqTotalNum');
INSERT INTO "kpi_title" VALUES (391, 'HLR', 'HLR.A.136', NULL, '获取路由成功次数', 'RouteInfoSuccTotalNum');
INSERT INTO "kpi_title" VALUES (392, 'HLR', 'HLR.A.137', NULL, '获取路由尝试失败:缺席用户', 'RouteInfoFailByAbsentSub');
INSERT INTO "kpi_title" VALUES (393, 'HLR', 'HLR.A.138', NULL, '获取路由尝试失败:未知用户', 'RouteInfoFailByUnknownSub');
INSERT INTO "kpi_title" VALUES (394, 'HLR', 'HLR.A.139', NULL, '获取路由尝试失败:系统错误', 'RouteInfoFailBySysFail');
INSERT INTO "kpi_title" VALUES (395, 'HLR', 'HLR.A.140', NULL, '获取路由尝试失败:终呼拒绝', 'RouteInfoFailByCalledReject');
INSERT INTO "kpi_title" VALUES (396, 'HLR', 'HLR.A.141', NULL, '获取路由尝试失败:缺参数', 'RouteInfoFailByDataMiss');
INSERT INTO "kpi_title" VALUES (397, 'HLR', 'HLR.A.142', NULL, '获取路由尝试失败:设备不支持', 'RouteInfoFailByFacNotSupport');
INSERT INTO "kpi_title" VALUES (398, 'HLR', 'HLR.A.143', NULL, '获取路由尝试失败:不支持路由优化', 'RouteInfoFailByORNotAllowed');
INSERT INTO "kpi_title" VALUES (399, 'HLR', 'HLR.A.144', NULL, 'SRI触发漫游号码请求失败缺席用户', 'RouteNumberFailByAbsentSub');
INSERT INTO "kpi_title" VALUES (400, 'HLR', 'HLR.A.145', NULL, 'SRI触发漫游号码请求失败缺参数', 'RouteNumberFailByDataMiss');
INSERT INTO "kpi_title" VALUES (401, 'HLR', 'HLR.A.146', NULL, 'SRI触发漫游号码请求失败设备不支持', 'RouteNumberFailByFacNotSupport');
INSERT INTO "kpi_title" VALUES (402, 'HLR', 'HLR.A.147', NULL, 'SRI触发漫游号码请求失败无漫游号码分配', 'RouteNumberFailByNoAssign');
INSERT INTO "kpi_title" VALUES (403, 'HLR', 'HLR.A.148', NULL, 'SRI触发漫游号码请求失败不支持路由优化', 'RouteNumberFailByORNotAllowed');
INSERT INTO "kpi_title" VALUES (404, 'HLR', 'HLR.A.149', NULL, 'SRI触发漫游号码请求次数', 'RouteNumberReqTotalNum');
INSERT INTO "kpi_title" VALUES (405, 'HLR', 'HLR.A.150', NULL, 'SRI触发漫游号码请求失败系统错误', 'RouteNumberFailBySysFail');
INSERT INTO "kpi_title" VALUES (406, 'HLR', 'HLR.A.151', NULL, 'SRI触发漫游号码请求失败非期望的参数值', 'RouteNumberFailByUnexpData');
INSERT INTO "kpi_title" VALUES (407, 'HLR', 'HLR.A.152', NULL, 'SRI触发漫游号码请求成功次数', 'RouteNumberSuccTotalNum');
INSERT INTO "kpi_title" VALUES (408, 'HLR', 'HLR.A.153', NULL, '路由失败:呼叫闭锁', 'SMRouteFailByCallBarred');
INSERT INTO "kpi_title" VALUES (409, 'HLR', 'HLR.A.154', NULL, '路由失败:缺参数', 'SMRouteFailByDataMiss');
INSERT INTO "kpi_title" VALUES (410, 'HLR', 'HLR.A.155', NULL, '路由失败:设备不支持', 'SMRouteFailByFacNotSupport');
INSERT INTO "kpi_title" VALUES (411, 'HLR', 'HLR.A.156', NULL, '路由失败:系统错误', 'SMRouteFailBySysFail');
INSERT INTO "kpi_title" VALUES (412, 'HLR', 'HLR.A.157', NULL, '路由失败:非期望的参数值', 'SMRouteFailByUnexptPara');
INSERT INTO "kpi_title" VALUES (413, 'HLR', 'HLR.A.158', NULL, '路由失败:未知用户', 'SMRouteFailByUnknownSub');
INSERT INTO "kpi_title" VALUES (414, 'HLR', 'HLR.A.159', NULL, '终呼失败:非法用户', 'SMRouteFailByIllegalSub');
INSERT INTO "kpi_title" VALUES (415, 'HLR', 'HLR.A.160', NULL, '终呼失败:缺席用户', 'SMRouteFailByAbsentSub');
INSERT INTO "kpi_title" VALUES (416, 'HLR', 'HLR.A.161', NULL, '终呼失败:终呼时用户忙', 'SMRouteFailByBusySub');
INSERT INTO "kpi_title" VALUES (417, 'HLR', 'HLR.A.162', NULL, '终呼失败:系统错误', 'SMRouteFailBySysFail');
INSERT INTO "kpi_title" VALUES (418, 'HLR', 'HLR.A.163', NULL, '终呼失败:不期望的参数值', 'SMRouteFailByUnexptPara');
INSERT INTO "kpi_title" VALUES (419, 'HLR', 'HLR.A.164', NULL, '终呼失败:消息等待队列满', 'SMRouteFailByMsgQueueFull');
INSERT INTO "kpi_title" VALUES (420, 'HLR', 'HLR.A.165', NULL, '接收GSM MAP_ALERT消息次数', 'GsmAlertReqTotalNum');
INSERT INTO "kpi_title" VALUES (421, 'HLR', 'HLR.A.166', NULL, '接收GSM MAP_ALERT消息成功次数', 'GsmAlertSuccTotalNum');
INSERT INTO "kpi_title" VALUES (422, 'HLR', 'HLR.A.167', NULL, '重启指示发送次数', 'ResetReqTotalNum');
INSERT INTO "kpi_title" VALUES (423, 'HLR', 'HLR.A.168', NULL, '重启成功次数', 'ResetSuccTotalNum');
INSERT INTO "kpi_title" VALUES (424, 'HLR', 'HLR.A.169', NULL, '数据恢复请求次数', 'RestoreDataReqTotalNum');
INSERT INTO "kpi_title" VALUES (425, 'HLR', 'HLR.A.170', NULL, '数据恢复成功次数', 'RestoreDataReqSuccNum');
INSERT INTO "kpi_title" VALUES (426, 'HLR', 'HLR.A.171', NULL, 'C2G Boss开户成功次数', 'AddUserBossSuccNum');
INSERT INTO "kpi_title" VALUES (427, 'HLR', 'HLR.A.172', NULL, 'C2G Boss销户成功次数', 'DelUserBossSuccNum');
INSERT INTO "kpi_title" VALUES (428, 'HLR', 'HLR.A.173', NULL, 'C2G Boss修改用户成功次数', 'ModUserBossSuccNum');
INSERT INTO "kpi_title" VALUES (429, 'HLR', 'HLR.A.174', NULL, 'C2G Boss开户请求次数', 'AddUserBossReqNum');
INSERT INTO "kpi_title" VALUES (430, 'HLR', 'HLR.A.175', NULL, 'C2G Boss受理失败返回IMSI not used次数', 'BossServFailByImsiNot');
INSERT INTO "kpi_title" VALUES (431, 'HLR', 'HLR.A.176', NULL, 'C2G Boss受理失败返回ISDN not used次数', 'BossServFailByIsdnNot');
INSERT INTO "kpi_title" VALUES (432, 'HLR', 'HLR.A.177', NULL, 'C2G Boss受理失败返回其他错误次数', 'BossServFailByOther');
INSERT INTO "kpi_title" VALUES (433, 'HLR', 'HLR.A.178', NULL, 'C2G Boss受理失败返回repeat IMSI次数', 'BossServFailByRepImsi');
INSERT INTO "kpi_title" VALUES (434, 'HLR', 'HLR.A.179', NULL, 'C2G Boss受理失败返回repeat ISDN次数', 'BossServFailByRepIsdn');
INSERT INTO "kpi_title" VALUES (435, 'HLR', 'HLR.A.180', NULL, 'C2G Boss销户请求次数', 'DelUserBossReqNum');
INSERT INTO "kpi_title" VALUES (436, 'HLR', 'HLR.A.181', NULL, 'C2G Boss修改用户请求次数', 'ModUserBossReqNum');
INSERT INTO "kpi_title" VALUES (437, 'UDM', 'AUSF.01', '{"cn": "鉴权成功次数", "en": "Ausf.UeAuthAnsSucc"}', '鉴权成功次数', 'Ausf.UeAuthAnsSucc');
INSERT INTO "kpi_title" VALUES (438, 'UDM', 'AUSF.02', '{"cn": "鉴权请求次数", "en": "Ausf.UeAuthReq"}', '鉴权请求次数', 'Ausf.UeAuthReq');

View File

@@ -0,0 +1,583 @@
-- ----------------------------
-- Table structure for measure_title
-- ----------------------------
DROP TABLE IF EXISTS "measure_title";
CREATE TABLE "measure_title" (
"id" integer NOT NULL,
"ne_type" text(16),
"kpi_code" text(32),
"kpi_id" text(64),
"pseudo" text(255),
"object_type" text(16),
"period" text(8),
"title_json" text,
"description" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of measure_title
-- ----------------------------
INSERT INTO "measure_title" VALUES (3431, 'AMF', 'AMFHA01', 'AMF.AuthReq', 'false', 'AmfFunction', '15M', '{"cn":"鉴权请求次数","en":"AMF.AuthReq"}', 'AMF发起鉴权请求消息的次数
');
INSERT INTO "measure_title" VALUES (3432, 'AMF', 'AMFHA02', 'AMF.AuthFail', 'false', 'AmfFunction', '15M', '{"cn":"鉴权参数错误次数","en":"AMF.AuthFail"}', 'UE检测出Authentication Request中包含的鉴权参数错误向AMF发送Authentication Failure的次数cause值可能为20、21、26');
INSERT INTO "measure_title" VALUES (3433, 'AMF', 'AMFHA02', 'AMF.AuthFail.20', 'false', 'AmfFunction', '15M', '{"cn":"MAC错误导致的鉴权参数错误次数","en":"AMF.AuthFail.20"}', 'UE检测出Authentication Request中包含的鉴权参数错误向AMF发送Authentication Failure的次数cause值可能为20、21、26');
INSERT INTO "measure_title" VALUES (3434, 'AMF', 'AMFHA02', 'AMF.AuthFail.21', 'false', 'AmfFunction', '15M', '{"cn":"同步失败导致的鉴权参数错误次数","en":"AMF.AuthFail.21"}', 'UE检测出Authentication Request中包含的鉴权参数错误向AMF发送Authentication Failure的次数cause值可能为20、21、26');
INSERT INTO "measure_title" VALUES (3435, 'AMF', 'AMFHA02', 'AMF.AuthFail.26', 'false', 'AmfFunction', '15M', '{"cn":"非5G鉴权导致的鉴权参数错误次数","en":"AMF.AuthFail.26"}', 'UE检测出Authentication Request中包含的鉴权参数错误向AMF发送Authentication Failure的次数cause值可能为20、21、26');
INSERT INTO "measure_title" VALUES (3436, 'AMF', 'AMFHA03', 'AMF.AuthReject', 'false', 'AmfFunction', '15M', '{"cn":"鉴权拒绝次数","en":"AMF.AuthReject"}', '发送Authentication Reject消息的次数
');
INSERT INTO "measure_title" VALUES (3437, 'AMF', 'AMFHB01', 'AMF.RegSub', 'false', 'AmfFunction', '15M', '{"cn":"AMF注册态用户数","en":"AMF.RegSub"}', '当前所有注册在AMF上的用户');
INSERT INTO "measure_title" VALUES (3438, 'AMF', 'AMFHB01', 'AMF.RegSubMean', 'false', 'AmfFunction', '15M', '{"cn":"AMF平均注册态用户数","en":"AMF.RegSubMean"}', '当前所有注册在AMF上的用户取统计周期内的平均值');
INSERT INTO "measure_title" VALUES (3439, 'AMF', 'AMFHB01', 'AMF.RegSubMax', 'false', 'AmfFunction', '15M', '{"cn":"AMF最大注册态用户数","en":"AMF.RegSubMax"}', '当前所有注册在AMF上的用户取统计周期内的最大值');
INSERT INTO "measure_title" VALUES (3440, 'AMF', 'AMFHB01', 'AMF.RegSub.CmIdle', 'false', 'AmfFunction', '15M', '{"cn":"AMF空闲态用户数","en":"AMF.RegSub.CmIdle"}', '当前所有注册在AMF上的处于CM-IDLE状态的用户。');
INSERT INTO "measure_title" VALUES (3441, 'AMF', 'AMFHB01', 'AMF.RegSub.CmIdleMean', 'false', 'AmfFunction', '15M', '{"cn":"AMF平均空闲态用户数","en":"AMF.RegSub.CmIdleMean"}', '当前所有注册在AMF上的处于CM-IDLE状态的用户取统计周期内的平均值');
INSERT INTO "measure_title" VALUES (3442, 'AMF', 'AMFHB01', 'AMF.RegSub.CmIdleMax', 'false', 'AmfFunction', '15M', '{"cn":"AMF最大空闲态用户数","en":"AMF.RegSub.CmIdleMax"}', '当前所有注册在AMF上的处于CM-IDLE状态的用户取统计周期内的最大值');
INSERT INTO "measure_title" VALUES (3443, 'AMF', 'AMFHB01', 'AMF.RegSub.CmIdle._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的AMF空闲态用户数","en":"AMF.RegSub.CmIdle._Ta"}', '分TA统计当前处于CM-IDLE状态的用户数。如果网络配置约定TAList只包括当前TA则分跟踪区的统计是准确的若网络配置TAList可以包括多个TA则以上次用户处于连接态时的TA作为用户当前TA但这样统计的结果只是一个近似值。');
INSERT INTO "measure_title" VALUES (3444, 'AMF', 'AMFHB01', 'AMF.RegSub.CmIdleMean._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的AMF平均空闲态用户数","en":"AMF.RegSub.CmIdleMean._Ta"}', '分TA统计当前处于CM-IDLE状态的用户数取统计周期内的平均值。如果网络配置约定TAList只包括当前TA则分跟踪区的统计是准确的若网络配置TAList可以包括多个TA则以上次用户处于连接态时的TA作为用户当前TA但这样统计的结果只是一个近似值。');
INSERT INTO "measure_title" VALUES (3445, 'AMF', 'AMFHB01', 'AMF.RegSub.CmIdleMax._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的AMF最大空闲态用户数","en":"AMF.RegSub.CmIdleMax._Ta"}', '分TA统计当前处于CM-IDLE状态的用户数取统计周期内的最大值。如果网络配置约定TAList只包括当前TA则分跟踪区的统计是准确的若网络配置TAList可以包括多个TA则以上次用户处于连接态时的TA作为用户当前TA但这样统计的结果只是一个近似值。');
INSERT INTO "measure_title" VALUES (3446, 'AMF', 'AMFHB01', 'AMF.RegSub.CmConnected', 'false', 'AmfFunction', '15M', '{"cn":"AMF连接态用户数","en":"AMF.RegSub.CmConnected"}', '当前所有注册在AMF上的处于CM-CONNECTED状态的用户.');
INSERT INTO "measure_title" VALUES (3447, 'AMF', 'AMFHB01', 'AMF.RegSub.CmConnectedMean', 'false', 'AmfFunction', '15M', '{"cn":"AMF平均连接态用户数","en":"AMF.RegSub.CmConnectedMean"}', '当前所有注册在AMF上的处于CM-CONNECTED状态的用户取统计周期内的平均值');
INSERT INTO "measure_title" VALUES (3448, 'AMF', 'AMFHB01', 'AMF.RegSub.CmConnectedMax', 'false', 'AmfFunction', '15M', '{"cn":"AMF最大连接态用户数","en":"AMF.RegSub.CmConnectedMax"}', '当前所有注册在AMF上的处于CM-CONNECTED状态的用户取统计周期内的最大值');
INSERT INTO "measure_title" VALUES (3449, 'AMF', 'AMFHB01', 'AMF.RegSub.CmConnected._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的AMF连接态用户数","en":"AMF.RegSub.CmConnected._Ta"}', '分跟踪区统计当前所有注册在AMF上的处于CM-CONNECTED状态的用户.');
INSERT INTO "measure_title" VALUES (3450, 'AMF', 'AMFHB01', 'AMF.RegSub.CmConnectedMean._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的AMF平均连接态用户数","en":"AMF.RegSub.CmConnectedMean._Ta"}', '分跟踪区统计当前所有注册在AMF上的处于CM-CONNECTED状态的用户取统计周期内的平均值');
INSERT INTO "measure_title" VALUES (3451, 'AMF', 'AMFHB01', 'AMF.RegSub.CmConnectedMax._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的AMF最大连接态用户数","en":"AMF.RegSub.CmConnectedMax._Ta"}', '分跟踪区统计当前所有注册在AMF上的处于CM-CONNECTED状态的用户取统计周期内的最大值');
INSERT INTO "measure_title" VALUES (3452, 'AMF', 'AMFHB01', 'AMF.RegSub.CmConnected._Ns', 'true', 'AmfFunction', '15M', '{"cn":"分切片的AMF连接态用户数","en":"AMF.RegSub.CmConnected._Ns"}', '分切片统计当前所有注册在AMF上的处于CM-CONNECTED状态的用户.');
INSERT INTO "measure_title" VALUES (3453, 'AMF', 'AMFHB01', 'AMF.RegSub._Ns', 'true', 'AmfFunction', '15M', '{"cn":"分切片的AMF注册用户数","en":"AMF.RegSub._Ns"}', 'AMF支持的允许UE使用的S-NSSAI统计每个网络切片在AMF上的用户数。以AMF下发给UE的allowed S-NSSAI中AMF支持的S-NSSAI的个数为准。');
INSERT INTO "measure_title" VALUES (3454, 'AMF', 'AMFHB01', 'AMF.RegSubMean._Ns', 'true', 'AmfFunction', '15M', '{"cn":"分切片的AMF平均注册用户数","en":"AMF.RegSubMean._Ns"}', 'AMF支持的允许UE使用的S-NSSAI统计每个网络切片在AMF上的用户数取统计周期内的平均值。以AMF下发给UE的allowed S-NSSAI中AMF支持的S-NSSAI的个数为准。');
INSERT INTO "measure_title" VALUES (3455, 'AMF', 'AMFHB01', 'AMF.RegSubMax._Ns', 'true', 'AmfFunction', '15M', '{"cn":"分切片的AMF最大注册用户数","en":"AMF.RegSubMax._Ns"}', 'AMF支持的允许UE使用的S-NSSAI统计每个网络切片在AMF上的用户数取统计周期内的最大值。以AMF下发给UE的allowed S-NSSAI中AMF支持的S-NSSAI的个数为准。');
INSERT INTO "measure_title" VALUES (3456, 'AMF', 'AMFHB01', 'AMF.RegSub._NumSeg', 'true', 'AmfFunction', '15M', '{"cn":"分号段的AMF注册用户数","en":"AMF.RegSub._NumSeg"}', '分号段统计注册在AMF上的用户。伪测量_NumSeg的取值形式如下
1)对于国漫用户:
  <MCC><MNC>, 即IMSI的前5(6)位数字。
AMF.NbrSubEcm.10001
2对于网内用户
<NDC><H0H1H2H3>,如
AMF.NbrSubEcm.1370101');
INSERT INTO "measure_title" VALUES (3457, 'AMF', 'AMFHC01', 'AMF.AttInitReg', 'false', 'AmfFunction', '15M', '{"cn":"初始注册请求次数","en":"AMF.AttInitReg"}', '初始注册请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3458, 'AMF', 'AMFHC01', 'AMF.AttInitReg._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册请求次数","en":"AMF.AttInitReg._Ta"}', '初始注册请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3459, 'AMF', 'AMFHC02', 'AMF.SuccInitReg', 'false', 'AmfFunction', '15M', '{"cn":"初始注册成功次数","en":"AMF.SuccInitReg"}', '初始注册完成次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3460, 'AMF', 'AMFHC02', 'AMF.SuccInitReg._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册成功次数","en":"AMF.SuccInitReg._Ta"}', '初始注册完成次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3461, 'AMF', 'AMFHC03', 'AMF.FailedInitReg', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数","en":"AMF.FailedInitReg"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3462, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Cause', 'true', 'AmfFunction', '15M', '{"cn":"分原因值的初始注册失败次数","en":"AMF.FailedInitReg._Cause"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3463, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.3', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_非法用户","en":"AMF.FailedInitReg.3"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3464, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.5', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_PEI不允许","en":"AMF.FailedInitReg.5"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3465, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.6', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_非法设备","en":"AMF.FailedInitReg.6"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3466, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.7', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_5GS服务不允许","en":"AMF.FailedInitReg.7"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3467, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.7.User', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_5GS服务不允许_用户原因","en":"AMF.FailedInitReg.7.User"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3468, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.15', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_跟踪区内无合适小区","en":"AMF.FailedInitReg.15"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3469, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.15.User', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_跟踪区内无合适小区_用户原因","en":"AMF.FailedInitReg.15.User"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3470, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.12', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_跟踪区不允许","en":"AMF.FailedInitReg.12"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3471, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.13', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_漫游跟踪区禁止接入","en":"AMF.FailedInitReg.13"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3472, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.27', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_N1模式不允许","en":"AMF.FailedInitReg.27"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3473, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.62', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_无可用网络切片","en":"AMF.FailedInitReg.62"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3474, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.11', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_PLMN不允许","en":"AMF.FailedInitReg.11"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3475, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.111', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_协议错误","en":"AMF.FailedInitReg.111"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3476, 'AMF', 'AMFHC03', 'AMF.FailedInitReg.111.User', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_协议错误_用户原因","en":"AMF.FailedInitReg.111.User"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3477, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数","en":"AMF.FailedInitReg._Ta"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3478, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.3', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_非法用户","en":"AMF.FailedInitReg._Ta.3"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3479, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.5', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_PEI不允许","en":"AMF.FailedInitReg._Ta.5"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3480, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.6', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_非法设备","en":"AMF.FailedInitReg._Ta.6"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3481, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.7', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_5GS服务不允许","en":"AMF.FailedInitReg._Ta.7"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3482, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.7.User', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_5GS服务不允许_用户原因","en":"AMF.FailedInitReg._Ta.7.User"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3483, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.15', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_跟踪区内无合适小区","en":"AMF.FailedInitReg._Ta.15"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3484, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.15.User', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_跟踪区内无合适小区_用户原因","en":"AMF.FailedInitReg._Ta.15.User"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3485, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.12', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_跟踪区不允许","en":"AMF.FailedInitReg._Ta.12"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3486, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.13', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_漫游跟踪区禁止接入","en":"AMF.FailedInitReg._Ta.13"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3487, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.27', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_N1模式不允许","en":"AMF.FailedInitReg._Ta.27"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3488, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.62', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_无可用网络切片","en":"AMF.FailedInitReg._Ta.62"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3489, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.11', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_PLMN不允许","en":"AMF.FailedInitReg._Ta.11"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3490, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.111', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_协议错误","en":"AMF.FailedInitReg._Ta.111"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3491, 'AMF', 'AMFHC03', 'AMF.FailedInitReg._Ta.111.User', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册失败次数_协议错误_用户原因","en":"AMF.FailedInitReg._Ta.111.User"}', '分跟踪区的初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、8、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3492, 'AMF', 'AMFHC04', 'AMF.InitRegTime', 'false', 'AmfFunction', '15M', '{"cn":"初始注册平均时长","en":"AMF.InitRegTime"}', '成功的初始附着流程的平均时长');
INSERT INTO "measure_title" VALUES (3493, 'AMF', 'AMFHD01', 'AMF.RegUpdReq', 'false', 'AmfFunction', '15M', '{"cn":"注册更新请求次数","en":"AMF.RegUpdReq"}', '注册更新请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3494, 'AMF', 'AMFHD01', 'AMF.RegUpdReq._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分TA的注册更新请求次数","en":"AMF.RegUpdReq._Ta"}', '注册更新请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3495, 'AMF', 'AMFHD01', 'AMF.RegUpdReq.Mob.InterAmf', 'false', 'AmfFunction', '15M', '{"cn":"AMF间移动性注册更新请求次数","en":"AMF.RegUpdReq.Mob.InterAmf"}', 'AMF间移动性注册更新请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3496, 'AMF', 'AMFHD01', 'AMF.RegUpdReq.Mob.InterAmf._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分TA的AMF间移动性注册更新请求次数","en":"AMF.RegUpdReq.Mob.InterAmf._Ta"}', 'AMF间移动性注册更新请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3497, 'AMF', 'AMFHD01', 'AMF.RegUpdReq.Mob.IntraAmf', 'false', 'AmfFunction', '15M', '{"cn":"AMF内移动性注册更新请求次数","en":"AMF.RegUpdReq.Mob.IntraAmf"}', 'AMF内移动性注册更新请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3498, 'AMF', 'AMFHD01', 'AMF.RegUpdReq.Mob.IntraAmf._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分TA的AMF内移动性注册更新请求次数","en":"AMF.RegUpdReq.Mob.IntraAmf._Ta"}', 'AMF内移动性注册更新请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3499, 'AMF', 'AMFHD01', 'AMF.RegUpdReq.Per', 'false', 'AmfFunction', '15M', '{"cn":"周期性注册更新请求次数","en":"AMF.RegUpdReq.Per"}', '周期性注册更新请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3500, 'AMF', 'AMFHD01', 'AMF.RegUpdReq.Per._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分TA的周期性注册更新请求次数","en":"AMF.RegUpdReq.Per._Ta"}', '周期性注册更新请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3501, 'AMF', 'AMFHD02', 'AMF.RegUpdAcpt', 'false', 'AmfFunction', '15M', '{"cn":"注册更新接受次数","en":"AMF.RegUpdAcpt"}', '注册更新接受次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3502, 'AMF', 'AMFHD02', 'AMF.RegUpdAcpt._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分TA的注册更新接受次数","en":"AMF.RegUpdAcpt._Ta"}', '注册更新接受次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3503, 'AMF', 'AMFHD02', 'AMF.RegUpdAcpt.Mob.InterAmf', 'false', 'AmfFunction', '15M', '{"cn":"AMF间移动性注册更新接受次数","en":"AMF.RegUpdAcpt.Mob.InterAmf"}', 'AMF间移动性注册更新接受次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3504, 'AMF', 'AMFHD02', 'AMF.RegUpdAcpt.Mob.InterAmf._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分TA的AMF间移动性注册更新接受次数","en":"AMF.RegUpdAcpt.Mob.InterAmf._Ta"}', 'AMF间移动性注册更新接受次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3505, 'AMF', 'AMFHD02', 'AMF.RegUpdAcpt.Mob.IntraAmf', 'false', 'AmfFunction', '15M', '{"cn":"AMF内移动性注册更新接受次数","en":"AMF.RegUpdAcpt.Mob.IntraAmf"}', 'AMF内移动性注册更新接受次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3506, 'AMF', 'AMFHD02', 'AMF.RegUpdAcpt.Mob.IntraAmf._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分TA的AMF内移动性注册更新接受次数","en":"AMF.RegUpdAcpt.Mob.IntraAmf._Ta"}', 'AMF内移动性注册更新接受次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3507, 'AMF', 'AMFHD02', 'AMF.RegUpdAcpt.Per', 'false', 'AmfFunction', '15M', '{"cn":"周期性注册更新接受次数","en":"AMF.RegUpdAcpt.Per"}', '周期性注册更新接受消息的个数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3508, 'AMF', 'AMFHD02', 'AMF.RegUpdAcpt.Per._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分TA的周期性注册更新接受次数","en":"AMF.RegUpdAcpt.Per._Ta"}', '周期性注册更新接受消息的个数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3509, 'AMF', 'AMFHD03', 'AMF.RegUpdRej', 'false', 'AmfFunction', '15M', '{"cn":"注册更新失败次数","en":"AMF.RegUpdRej"}', '注册更新失败次数,分原因进行分类统计。
其中原因值3、6、7视为用户原因。');
INSERT INTO "measure_title" VALUES (3510, 'AMF', 'AMFHD03', 'AMF.RegUpdRej._Cause', 'true', 'AmfFunction', '15M', '{"cn":"分原因的注册更新失败次数","en":"AMF.RegUpdRej._Cause"}', '注册更新失败次数,分原因进行分类统计。
其中原因值3、6、7视为用户原因。');
INSERT INTO "measure_title" VALUES (3511, 'AMF', 'AMFHD03', 'AMF.RegUpdRej.3', 'false', 'AmfFunction', '15M', '{"cn":"注册更新失败次数(非法用户)","en":"AMF.RegUpdRej.3"}', '注册更新失败次数,分原因进行分类统计。
其中原因值3、6、7视为用户原因。');
INSERT INTO "measure_title" VALUES (3512, 'AMF', 'AMFHD03', 'AMF.RegUpdRej.6', 'false', 'AmfFunction', '15M', '{"cn":"注册更新失败次数(非法设备)","en":"AMF.RegUpdRej.6"}', '注册更新失败次数,分原因进行分类统计。
其中原因值3、6、7视为用户原因。');
INSERT INTO "measure_title" VALUES (3513, 'AMF', 'AMFHD03', 'AMF.RegUpdRej.7', 'false', 'AmfFunction', '15M', '{"cn":"注册更新失败次数5GS服务不允许","en":"AMF.RegUpdRej.7"}', '注册更新失败次数,分原因进行分类统计。
其中原因值3、6、7视为用户原因。');
INSERT INTO "measure_title" VALUES (3514, 'AMF', 'AMFHD03', 'AMF.RegUpdRej._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分TA的注册更新失败次数","en":"AMF.RegUpdRej._Ta"}', '分TA的注册更新失败次数分原因进行分类统计。
其中原因值3、6、7视为用户原因。');
INSERT INTO "measure_title" VALUES (3515, 'AMF', 'AMFHD03', 'AMF.RegUpdRej._Ta.3', 'true', 'AmfFunction', '15M', '{"cn":"分TA的注册更新失败次数(非法用户)","en":"AMF.RegUpdRej._Ta.3"}', '分TA的注册更新失败次数分原因进行分类统计。
其中原因值3、6、7视为用户原因。');
INSERT INTO "measure_title" VALUES (3516, 'AMF', 'AMFHD03', 'AMF.RegUpdRej._Ta.6', 'true', 'AmfFunction', '15M', '{"cn":"分TA的注册更新失败次数非法设备","en":"AMF.RegUpdRej._Ta.6"}', '分TA的注册更新失败次数分原因进行分类统计。
其中原因值3、6、7视为用户原因。');
INSERT INTO "measure_title" VALUES (3517, 'AMF', 'AMFHD03', 'AMF.RegUpdRej._Ta.7', 'true', 'AmfFunction', '15M', '{"cn":"分TA的注册更新失败次数5GS服务不允许","en":"AMF.RegUpdRej._Ta.7"}', '分TA的注册更新失败次数分原因进行分类统计。
其中原因值3、6、7视为用户原因。');
INSERT INTO "measure_title" VALUES (3518, 'AMF', 'AMFHE01', 'AMF.PagAtt', 'false', 'AmfFunction', '15M', '{"cn":"寻呼请求次数","en":"AMF.PagAtt"}', 'AMF的寻呼请求次数并分TA进行统计。不包括二次寻呼二次及二次以上统称为二次寻呼请求次数。');
INSERT INTO "measure_title" VALUES (3519, 'AMF', 'AMFHE01', 'AMF.PagAtt._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区寻呼请求次数","en":"AMF.PagAtt._Ta"}', 'AMF的寻呼请求次数并分TA进行统计。不包括二次寻呼二次及二次以上统称为二次寻呼请求次数。');
INSERT INTO "measure_title" VALUES (3520, 'AMF', 'AMFHE02', 'AMF.FirstPagingSucc', 'false', 'AmfFunction', '15M', '{"cn":"一次寻呼响应次数","en":"AMF.FirstPagingSucc"}', '一次寻呼成功次数并分TA进行统计。
');
INSERT INTO "measure_title" VALUES (3521, 'AMF', 'AMFHE02', 'AMF.FirstPagingSucc._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区一次寻呼响应次数","en":"AMF.FirstPagingSucc._Ta"}', '一次寻呼成功次数并分TA进行统计。
');
INSERT INTO "measure_title" VALUES (3522, 'AMF', 'AMFHE03', 'AMF.SecondPagingSucc', 'false', 'AmfFunction', '15M', '{"cn":"二次寻呼响应次数","en":"AMF.SecondPagingSucc"}', '二次及二次以上寻呼成功次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3523, 'AMF', 'AMFHE03', 'AMF.SecondPagingSucc._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区二次寻呼响应次数","en":"AMF.SecondPagingSucc._Ta"}', '二次及二次以上寻呼成功次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3524, 'AMF', 'AMFHE04', 'AMF.AttServiceReq', 'false', 'AmfFunction', '15M', '{"cn":"业务请求尝试次数","en":"AMF.AttServiceReq"}', 'UE发起的业务请求次数
');
INSERT INTO "measure_title" VALUES (3525, 'AMF', 'AMFHE05', 'AMF.FailServiceReq', 'false', 'AmfFunction', '15M', '{"cn":"业务请求被拒次数","en":"AMF.FailServiceReq"}', 'UE发起业务请求被拒绝个数');
INSERT INTO "measure_title" VALUES (3526, 'AMF', 'AMFHE05', 'AMF.FailServiceReq._Cause', 'true', 'AmfFunction', '15M', '{"cn":"分原因的业务请求被拒次数","en":"AMF.FailServiceReq._Cause"}', 'UE发起业务请求被拒绝个数');
INSERT INTO "measure_title" VALUES (3527, 'AMF', 'AMFHF01', 'AMF.AttIntraAmfXn', 'false', 'AmfFunction', '15M', '{"cn":"AMF内Xn接口切换尝试数","en":"AMF.AttIntraAmfXn"}', 'AMF内基于Xn接口的切换尝试次数。');
INSERT INTO "measure_title" VALUES (3528, 'AMF', 'AMFHF02', 'AMF.SuccIntraAmfXn', 'false', 'AmfFunction', '15M', '{"cn":"AMF内Xn接口切换成功次数","en":"AMF.SuccIntraAmfXn"}', 'AMF内基于Xn接口的切换成功次数。');
INSERT INTO "measure_title" VALUES (3529, 'AMF', 'AMFHF03', 'AMF.AttIntraAmfN2', 'false', 'AmfFunction', '15M', '{"cn":"AMF内N2接口切换尝试次数","en":"AMF.AttIntraAmfN2"}', 'AMF内基于N2接口的切换尝试次数。');
INSERT INTO "measure_title" VALUES (3530, 'AMF', 'AMFHF04', 'AMF.SuccIntraAmfN2', 'false', 'AmfFunction', '15M', '{"cn":"AMF内N2接口切换成功次数","en":"AMF.SuccIntraAmfN2"}', 'AMF内基于N2接口的切换成功次数。');
INSERT INTO "measure_title" VALUES (3531, 'AMF', 'AMFHF05', 'AMF.AttOutInterAmf', 'false', 'AmfFunction', '15M', '{"cn":"AMF间切换出尝试次数","en":"AMF.AttOutInterAmf"}', 'AMF间的切换切换出源AMF尝试次数。');
INSERT INTO "measure_title" VALUES (3532, 'AMF', 'AMFHF06', 'AMF.SuccOutInterAmf', 'false', 'AmfFunction', '15M', '{"cn":"AMF间切换出成功次数","en":"AMF.SuccOutInterAmf"}', 'AMF间的切换切换出源AMF成功次数。');
INSERT INTO "measure_title" VALUES (3533, 'AMF', 'AMFHF07', 'AMF.AttIncInterAmf', 'false', 'AmfFunction', '15M', '{"cn":"AMF间切换入尝试次数","en":"AMF.AttIncInterAmf"}', 'AMF间的切换切换入目标AMF尝试次数。');
INSERT INTO "measure_title" VALUES (3534, 'AMF', 'AMFHF08', 'AMF.SuccIncInterAmf', 'false', 'AmfFunction', '15M', '{"cn":"AMF间切换入成功次数","en":"AMF.SuccIncInterAmf"}', 'AMF间的切换切换入目标AMF成功次数。');
INSERT INTO "measure_title" VALUES (3535, 'AMF', 'AMFHG01', 'AMF.Att5GHandoverTo4G', 'false', 'AmfFunction', '15M', '{"cn":"从5G网络切换出至4G网络尝试次数","en":"AMF.Att5GHandoverTo4G"}', '系统间切换从源NG-RAN切换出至目标E-UTRAN尝试次数。');
INSERT INTO "measure_title" VALUES (3536, 'AMF', 'AMFHG02', 'AMF.Succ5GHandoverTo4G', 'false', 'AmfFunction', '15M', '{"cn":"从5G网络切换出至4G网络成功次数","en":"AMF.Succ5GHandoverTo4G"}', '系统间切换从源NG-RAN切换出至目标E-UTRAN成功次数。');
INSERT INTO "measure_title" VALUES (3537, 'AMF', 'AMFHG03', 'AMF.Att4GHandoverTo5G', 'false', 'AmfFunction', '15M', '{"cn":"从4G网络切换入5G网络尝试次数","en":"AMF.Att4GHandoverTo5G"}', '系统间切换从源E-UTRAN切换入目标NG-RAN尝试次数。');
INSERT INTO "measure_title" VALUES (3538, 'AMF', 'AMFHG04', 'AMF.Succ4GHandoverTo5G', 'false', 'AmfFunction', '15M', '{"cn":"从4G网络切换入5G网络成功次数","en":"AMF.Succ4GHandoverTo5G"}', '系统间切换从源E-UTRAN切换入目标NG-RAN成功次数。');
INSERT INTO "measure_title" VALUES (3539, 'AMF', 'AMFHG05', 'AMF.Req4GReselectTo5G', 'false', 'AmfFunction', '15M', '{"cn":"从4G网络重选入5G网络请求次数","en":"AMF.Req4GReselectTo5G"}', '系统间网络重选从4G网络重选入5G网络请求次数。');
INSERT INTO "measure_title" VALUES (3540, 'AMF', 'AMFHG06', 'AMF.Acc4GReselectTo5G', 'false', 'AmfFunction', '15M', '{"cn":"从4G网络重选入5G网络接受次数","en":"AMF.Acc4GReselectTo5G"}', '系统间网络重选从4G网络重选入5G网络成功次数。');
INSERT INTO "measure_title" VALUES (3541, 'AMF', 'AMFHH01', 'ME.MeanMeLoad', 'false', 'ManagedElement', '15M', '{"cn":"系统平均负荷","en":"ME.MeanMeLoad"}', '
指测量周期中,网元的虚拟资源负荷的抽样平均值。网元的虚拟资源负荷可取对网元影响最大的模块的负荷,或取不同模块的负荷的加权平均值,不同厂商设备的计算方法各不相同。');
INSERT INTO "measure_title" VALUES (3542, 'AMF', 'AMFHI01', 'AMF.UecmRegReq', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UECM注册请求次数","en":"AMF.UecmRegReq"}', 'AMF向UDM发起UECM注册请求的次数。');
INSERT INTO "measure_title" VALUES (3543, 'AMF', 'AMFHI02', 'AMF.UecmRegSucc', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UECM注册成功次数","en":"AMF.UecmRegSucc"}', 'AMF收到UDM返回的UECM注册成功的次数。');
INSERT INTO "measure_title" VALUES (3544, 'AMF', 'AMFHI03', 'AMF.UecmRegFail', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UECM注册失败次数","en":"AMF.UecmRegFail"}', 'AMF收到UDM返回的UECM注册失败的次数。');
INSERT INTO "measure_title" VALUES (3545, 'AMF', 'AMFHI03', 'AMF.UecmRegFail._Cause', 'true', 'EpRpDynN8Amf', '15M', '{"cn":"分原因的UECM注册失败次数","en":"AMF.UecmRegFail._Cause"}', 'AMF收到UDM返回的UECM注册失败的次数。');
INSERT INTO "measure_title" VALUES (3546, 'AMF', 'AMFHI03', 'AMF.UecmRegFail.Unknown5GSub', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UECM注册失败次数_未签约5G","en":"AMF.UecmRegFail.Unknown5GSub"}', 'AMF收到UDM返回的UECM注册失败的次数。');
INSERT INTO "measure_title" VALUES (3547, 'AMF', 'AMFHI03', 'AMF.UecmRegFail.NoPsSub', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UECM注册失败次数_未签约PS业务","en":"AMF.UecmRegFail.NoPsSub"}', 'AMF收到UDM返回的UECM注册失败的次数。');
INSERT INTO "measure_title" VALUES (3548, 'AMF', 'AMFHI03', 'AMF.UecmRegFail.RoamNotAllowed', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UECM注册失败次数_漫游不允许","en":"AMF.UecmRegFail.RoamNotAllowed"}', 'AMF收到UDM返回的UECM注册失败的次数。');
INSERT INTO "measure_title" VALUES (3549, 'AMF', 'AMFHI03', 'AMF.UecmRegFail.AccessNotAllowed', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UECM注册失败次数_接入类型不允许","en":"AMF.UecmRegFail.AccessNotAllowed"}', 'AMF收到UDM返回的UECM注册失败的次数。');
INSERT INTO "measure_title" VALUES (3550, 'AMF', 'AMFHI03', 'AMF.UecmRegFail.RatNotAllowed', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UECM注册失败次数_5GS接入不允许","en":"AMF.UecmRegFail.RatNotAllowed"}', 'AMF收到UDM返回的UECM注册失败的次数。');
INSERT INTO "measure_title" VALUES (3551, 'AMF', 'AMFHI4', 'AMF.UecmDeregReq', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"AMF发起的UECM去注册请求次数","en":"AMF.UecmDeregReq"}', '在AMF删除用户数据时AMF向UDM发起的UECM去注册请求次数');
INSERT INTO "measure_title" VALUES (3552, 'AMF', 'AMFHI5', 'AMF.UecmDeregSucc', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"AMF发起的UECM去注册成功次数","en":"AMF.UecmDeregSucc"}', '在AMF删除用户数据时AMF收到UDM返回的UECM去注册成功次数');
INSERT INTO "measure_title" VALUES (3553, 'AMF', 'AMFHI6', 'AMF.UecmDeregNotifyReq', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UDM发起的UECM去注册请求次数","en":"AMF.UecmDeregNotifyReq"}', '当UDM中用户数据变更或用户移动到新的AMF下时UDM向AMF发起的UECM去注册通知次数');
INSERT INTO "measure_title" VALUES (3554, 'AMF', 'AMFHI7', 'AMF.UecmDeregNotifySucc', 'false', 'EpRpDynN8Amf', '15M', '{"cn":"UDM发起的UECM去注册成功次数","en":"AMF.UecmDeregNotifySucc"}', 'UDM调用Nudm_UECM_DeregistrationNotification service operation对AMF进行通知AMF分HTTP Status Code进行的响应次数。');
INSERT INTO "measure_title" VALUES (3555, 'AMF', 'AMFHJ01', 'AMF.SmContextCreateReq', 'false', 'EpRpDynN11Amf', '15M', '{"cn":"会话上下文建立请求次数","en":"AMF.SmContextCreateReq"}', 'AMF向SMF发起建立会话上下文的次数。');
INSERT INTO "measure_title" VALUES (3556, 'AMF', 'AMFHJ02', 'AMF.SessionCreateSucc', 'false', 'EpRpDynN11Amf', '15M', '{"cn":"会话上下文建立成功次数","en":"AMF.SessionCreateSucc"}', 'SMF返回AMF建立会话上下文成功的次数');
INSERT INTO "measure_title" VALUES (3557, 'AMF', 'AMFHJ03', 'AMF.SmContextUpdateReq', 'false', 'EpRpDynN11Amf', '15M', '{"cn":"会话上下文更新请求次数","en":"AMF.SmContextUpdateReq"}', 'AMF向SMF发起更新会话上下文的次数。');
INSERT INTO "measure_title" VALUES (3558, 'AMF', 'AMFHJ04', 'AMF.SessionUpdateSucc', 'false', 'EpRpDynN11Amf', '15M', '{"cn":"会话上下文更新成功次数","en":"AMF.SessionUpdateSucc"}', 'SMF返回AMF更新会话上下文成功的次数');
INSERT INTO "measure_title" VALUES (3559, 'AMF', 'AMFHJ05', 'AMF.SmContextReleaseReq', 'false', 'EpRpDynN11Amf', '15M', '{"cn":"会话上下文释放请求次数","en":"AMF.SmContextReleaseReq"}', 'AMF向SMF发起释放会话上下文的次数。');
INSERT INTO "measure_title" VALUES (3560, 'AMF', 'AMFHJ06', 'AMF.SessionReleaseSucc', 'false', 'EpRpDynN11Amf', '15M', '{"cn":"会话上下文释放成功次数","en":"AMF.SessionReleaseSucc"}', 'SMF返回AMF释放会话上下文成功的次数');
INSERT INTO "measure_title" VALUES (3561, 'AMF', 'AMFHJ07', 'AMF.SmContextRetrieveReq', 'false', 'EpRpDynN11Amf', '15M', '{"cn":"会话上下文查询请求次数","en":"AMF.SmContextRetrieveReq"}', 'AMF向SMF发起查询会话上下文的次数。');
INSERT INTO "measure_title" VALUES (3562, 'AMF', 'AMFHJ08', 'AMF.SessionRetrieveSucc', 'false', 'EpRpDynN11Amf', '15M', '{"cn":"会话上下文查询成功次数","en":"AMF.SessionRetrieveSucc"}', 'SMF返回AMF查询会话上下文成功的次数');
INSERT INTO "measure_title" VALUES (3563, 'AMF', 'AMFHK01', 'AMF.UeAuthReq', 'false', 'EpRpDynN12Amf', '15M', '{"cn":"AMF向AUSF发起鉴权请求次数","en":"AMF.UeAuthReq"}', 'AMF向AUSF发起鉴权请求消息次数');
INSERT INTO "measure_title" VALUES (3564, 'AMF', 'AMFHK02', 'AMF.UeAuthSucc', 'false', 'EpRpDynN12Amf', '15M', '{"cn":"AUSF向AMF返回的鉴权成功次数","en":"AMF.UeAuthSucc"}', 'AUSF向AMF返回的鉴权成功消息次数');
INSERT INTO "measure_title" VALUES (3565, 'AMF', 'AMFHK03', 'AMF.UeAuthFail', 'false', 'EpRpDynN12Amf', '15M', '{"cn":"鉴权失败次数","en":"AMF.UeAuthFail"}', '统计AMF收到的AUSF返回的鉴权失败次数并分application error进行统计。');
INSERT INTO "measure_title" VALUES (3566, 'AMF', 'AMFHK03', 'AMF.UeAuthFail._Cause', 'true', 'EpRpDynN12Amf', '15M', '{"cn":"分原因的鉴权失败次数","en":"AMF.UeAuthFail._Cause"}', '统计AMF收到的AUSF返回的鉴权失败次数并分application error进行统计。');
INSERT INTO "measure_title" VALUES (3567, 'AMF', 'AMFHK08', 'AMF.UeAuthCfmReq', 'false', 'EpRpDynN12Amf', '15M', '{"cn":"AMF向AUSF发起鉴权确认请求次数","en":"AMF.UeAuthCfmReq"}', 'AMF向AUSF发起鉴权确认请求消息次数');
INSERT INTO "measure_title" VALUES (3568, 'AMF', 'AMFHK09', 'AMF.UeAuthCfmSucc', 'false', 'EpRpDynN12Amf', '15M', '{"cn":"AUSF向AMF返回的鉴权确认成功次数","en":"AMF.UeAuthCfmSucc"}', 'AUSF向AMF返回的鉴权确认成功消息次数');
INSERT INTO "measure_title" VALUES (3569, 'AMF', 'AMFHL01', 'AMF.GnbNum', 'false', 'AmfFunction', '15M', '{"cn":"AMF挂接5G基站数","en":"AMF.GnbNum"}', '统计周期结束点时刻挂接在AMF下的5G基站数量');
INSERT INTO "measure_title" VALUES (3570, 'PCF', 'PCFHA01', 'PCF.AmAssocNbrMean', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联总数平均值","en":"PCF.AmAssocNbrMean"}', 'PCF上AM策略关联总数的平均值');
INSERT INTO "measure_title" VALUES (3571, 'PCF', 'PCFHA02', 'PCF.AmAssocNbrMax', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联总数最大值","en":"PCF.AmAssocNbrMax"}', 'PCF上AM策略关联总数的最大值');
INSERT INTO "measure_title" VALUES (3572, 'PCF', 'PCFHA03', 'PCF.SmAssocNbrMean', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联总数平均值","en":"PCF.SmAssocNbrMean"}', 'PCF上SM策略关联总数的平均值');
INSERT INTO "measure_title" VALUES (3573, 'PCF', 'PCFHA04', 'PCF.SmAssocNbrMax', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联总数最大值","en":"PCF.SmAssocNbrMax"}', 'PCF上SM策略关联总数的最大值');
INSERT INTO "measure_title" VALUES (3574, 'PCF', 'PCFHB01', 'PCF.PolicyAmAssocCreateReq', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联建立请求次数","en":"PCF.PolicyAmAssocCreateReq"}', 'PCF收到的AM策略关联建立请求次数');
INSERT INTO "measure_title" VALUES (3575, 'PCF', 'PCFHB02', 'PCF.PolicyAmAssocCreateSucc', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联建立成功次数","en":"PCF.PolicyAmAssocCreateSucc"}', 'PCF返回的AM策略关联建立成功次数');
INSERT INTO "measure_title" VALUES (3576, 'PCF', 'PCFHB03', 'PCF.PolicyAmAssocUpdateReq', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联更新请求次数","en":"PCF.PolicyAmAssocUpdateReq"}', 'PCF从AMF收到的AM策略关联更新请求次数');
INSERT INTO "measure_title" VALUES (3577, 'PCF', 'PCFHB04', 'PCF.PolicyAmAssocUpdateSucc', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联更新成功次数","en":"PCF.PolicyAmAssocUpdateSucc"}', 'PCF上AM策略关联更新成功次数');
INSERT INTO "measure_title" VALUES (3578, 'PCF', 'PCFHB05', 'PCF.PolicyAmAssocNotifReq', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联更新通知请求次数","en":"PCF.PolicyAmAssocNotifReq"}', '统计PCF向AMF发送的AM策略关联更新通知请求次数');
INSERT INTO "measure_title" VALUES (3579, 'PCF', 'PCFHB06', 'PCF.PolicyAmAssocNotifSucc', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联更新通知成功次数","en":"PCF.PolicyAmAssocNotifSucc"}', '统计PCF收到AMF返回的AM策略关联更新通知成功次数');
INSERT INTO "measure_title" VALUES (3580, 'PCF', 'PCFHB07', 'PCF.PolicyAmAssocDeleteReq', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联删除请求次数","en":"PCF.PolicyAmAssocDeleteReq"}', 'PCF从AMF收到的AM策略关联删除请求次数');
INSERT INTO "measure_title" VALUES (3581, 'PCF', 'PCFHB08', 'PCF.PolicyAmAssocDeleteSucc', 'false', 'PcfFunction', '15M', '{"cn":"AM策略关联删除成功次数","en":"PCF.PolicyAmAssocDeleteSucc"}', 'PCF上AM策略关联删除成功次数');
INSERT INTO "measure_title" VALUES (3582, 'PCF', 'PCFHC01', 'PCF.PolicySmAssocCreateReq', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联建立请求次数","en":"PCF.PolicySmAssocCreateReq"}', 'PCF收到的SM策略关联建立请求次数');
INSERT INTO "measure_title" VALUES (3583, 'PCF', 'PCFHC02', 'PCF.PolicySmAssocCreateSucc', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联建立成功次数","en":"PCF.PolicySmAssocCreateSucc"}', 'PCF返回的SM策略关联建立成功次数');
INSERT INTO "measure_title" VALUES (3584, 'PCF', 'PCFHC03', 'PCF.PolicySmAssocCreateFail', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联建立失败次数","en":"PCF.PolicySmAssocCreateFail"}', 'PCF返回的SM策略关联建立失败次数,并按不同的Application errors分别统计');
INSERT INTO "measure_title" VALUES (3585, 'PCF', 'PCFHC03', 'PCF.PolicySmAssocCreateFail._Cause', 'true', 'PcfFunction', '15M', '{"cn":"分原因的SM策略关联建立失败次数","en":"PCF.PolicySmAssocCreateFail._Cause"}', 'PCF返回的SM策略关联建立失败次数,并按不同的Application errors分别统计');
INSERT INTO "measure_title" VALUES (3586, 'PCF', 'PCFHC04', 'PCF.PolicySmAssocUpdateReq', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联更新请求次数","en":"PCF.PolicySmAssocUpdateReq"}', 'PCF从SMF收到的SM策略关联更新请求次数');
INSERT INTO "measure_title" VALUES (3587, 'PCF', 'PCFHC05', 'PCF.PolicySmAssocUpdateSucc', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联更新成功次数","en":"PCF.PolicySmAssocUpdateSucc"}', 'PCF上SM策略关联更新成功次数');
INSERT INTO "measure_title" VALUES (3588, 'PCF', 'PCFHC06', 'PCF.PolicySmAssocUpdateFail', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联更新失败次数","en":"PCF.PolicySmAssocUpdateFail"}', 'PCF返回的SM策略关联更新失败次数,并按不同的Application errors分别统计');
INSERT INTO "measure_title" VALUES (3589, 'PCF', 'PCFHC06', 'PCF.PolicySmAssocUpdateFail._Cause', 'true', 'PcfFunction', '15M', '{"cn":"分原因的SM策略关联更新失败次数","en":"PCF.PolicySmAssocUpdateFail._Cause"}', 'PCF返回的SM策略关联更新失败次数,并按不同的Application errors分别统计');
INSERT INTO "measure_title" VALUES (3590, 'PCF', 'PCFHC07', 'PCF.PolicySmAssocNotifReq', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联更新通知请求次数","en":"PCF.PolicySmAssocNotifReq"}', 'PCF向SMF发送的SM策略关联更新通知请求次数');
INSERT INTO "measure_title" VALUES (3591, 'PCF', 'PCFHC08', 'PCF.PolicySmAssocNotifSucc', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联更新通知成功次数","en":"PCF.PolicySmAssocNotifSucc"}', 'PCF上SM策略关联更新通知成功次数');
INSERT INTO "measure_title" VALUES (3592, 'PCF', 'PCFHC09', 'PCF.PolicySmAssocNotifFail', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联更新通知失败次数","en":"PCF.PolicySmAssocNotifFail"}', 'PCF上SM策略关联更新通知失败次数,并按不同的Application errors分类统计');
INSERT INTO "measure_title" VALUES (3593, 'PCF', 'PCFHC09', 'PCF.PolicySmAssocNotifFail._Cause', 'true', 'PcfFunction', '15M', '{"cn":"分原因的SM策略关联更新通知失败次数","en":"PCF.PolicySmAssocNotifFail._Cause"}', 'PCF上SM策略关联更新通知失败次数,并按不同的Application errors分类统计');
INSERT INTO "measure_title" VALUES (3594, 'PCF', 'PCFHC10', 'PCF.PolicySmAssocDeleteReq', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联删除请求次数","en":"PCF.PolicySmAssocDeleteReq"}', 'PCF从SMF收到的SM策略关联删除请求次数');
INSERT INTO "measure_title" VALUES (3595, 'PCF', 'PCFHC11', 'PCF.PolicySmAssocDeleteSucc', 'false', 'PcfFunction', '15M', '{"cn":"SM策略关联删除成功次数","en":"PCF.PolicySmAssocDeleteSucc"}', 'PCF上SM策略关联删除成功次数');
INSERT INTO "measure_title" VALUES (3596, 'PCF', 'PCFHD01', 'UDR.PcfSubNbr', 'false', 'UdrFunction', '15M', '{"cn":"PCF签约用户数","en":"UDR.PcfSubNbr"}', 'PCF签约成功的用户数。语音PCF不涉及Udr语音PCF对应指标填0。');
INSERT INTO "measure_title" VALUES (3597, 'PCF', 'PCFHE01', 'ME.MeanMeLoad', 'false', 'ManagedElement', '15M', '{"cn":"系统平均负荷","en":"ME.MeanMeLoad"}', '
指测量周期中,网元的虚拟机资源负荷的抽样平均值。网元的虚拟机资源负荷可取对网元影响最大的模块的负荷,或取不同模块的负荷的加权平均值,不同厂商设备的计算方法各不相同。');
INSERT INTO "measure_title" VALUES (3598, 'SMF', 'SMFHA01', 'SMF.AttCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立请求次数","en":"SMF.AttCreatePduSession"}', 'UE发起的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3599, 'SMF', 'SMFHA01', 'SMF.AttCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的PDU会话建立请求次数","en":"SMF.AttCreatePduSession._Ns"}', '按照S-NSSAI统计UE发起的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3600, 'SMF', 'SMFHA01', 'SMF.AttCreatePduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话建立请求次数","en":"SMF.AttCreatePduSession._Dnn"}', '按照DNN统计UE发起的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3601, 'SMF', 'SMFHA02', 'SMF.SuccCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立成功次数","en":"SMF.SuccCreatePduSession"}', 'UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3602, 'SMF', 'SMFHA02', 'SMF.SuccCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的PDU会话建立成功次数","en":"SMF.SuccCreatePduSession._Ns"}', '按照S-NSSAI统计UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3603, 'SMF', 'SMFHA02', 'SMF.SuccCreatePduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话建立成功次数","en":"SMF.SuccCreatePduSession._Dnn"}', '按照DNN统计UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3604, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立失败次数","en":"SMF.FailCreatePduSession"}', 'UE发起的PDU会话建立被SMF拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3605, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Cause', 'true', 'SmfFunction', '15M', '{"cn":"分原因的PDU会话建立失败次数","en":"SMF.FailCreatePduSession._Cause"}', 'UE发起的PDU会话建立被SMF拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3606, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession.82', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立失败次数_终端完整性保护速率过低","en":"SMF.FailCreatePduSession.82"}', '在会话建立及更新过程中终端支持的完整性保护速率小于5GC要求SMF可以拒绝');
INSERT INTO "measure_title" VALUES (3607, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession.28', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立失败次数_PDU会话类型不支持","en":"SMF.FailCreatePduSession.28"}', '由于终端设置错误请求的PDU会话类型与网络支持的PDU类型不一致。');
INSERT INTO "measure_title" VALUES (3608, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession.29', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立失败次数_鉴权失败","en":"SMF.FailCreatePduSession.29"}', '在PDU会话建立过程中因终端设置或终端未签约导致鉴权失败一般为2B业务场景');
INSERT INTO "measure_title" VALUES (3609, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession.68', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立失败次数_SSC模式不支持","en":"SMF.FailCreatePduSession.68"}', '终端设置原因终端请求的SSC模式和用户签约的不一致。');
INSERT INTO "measure_title" VALUES (3610, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession.27', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立失败次数_终端使用未知DNN或者DNN缺失","en":"SMF.FailCreatePduSession.27"}', 'DNN未知或DNN存在缺失导致的失败');
INSERT INTO "measure_title" VALUES (3611, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession.33', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立失败次数_终端请求的业务未签约","en":"SMF.FailCreatePduSession.33"}', '请求服务没有签约可能是DNN、PDU类型未签约导致');
INSERT INTO "measure_title" VALUES (3612, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession.46', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立失败次数_终端离开本地数据网服务区域","en":"SMF.FailCreatePduSession.46"}', '超出LADN服务区');
INSERT INTO "measure_title" VALUES (3613, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession.26', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立失败次数_资源不足","en":"SMF.FailCreatePduSession.26"}', '在会话建立过程中SMF因资源限制/控制场景拒绝会话建立NAS原因值为资源不足#26:Insufficient resources');
INSERT INTO "measure_title" VALUES (3614, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的PDU会话建立失败次数","en":"SMF.FailCreatePduSession._Ns"}', '按照S-NSSAI统计UE发起的PDU会话建立被SMF拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3615, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Ns.82', 'true', 'SmfFunction', '15M', '{"cn":"分网络切片的PDU会话建立失败次数_终端完整性保护速率过低","en":"SMF.FailCreatePduSession._Ns.82"}', '在会话建立及更新过程中终端支持的完整性保护速率小于5GC要求SMF可以拒绝');
INSERT INTO "measure_title" VALUES (3616, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Ns.28', 'true', 'SmfFunction', '15M', '{"cn":"分网络切片的PDU会话建立失败次数_PDU会话类型不支持","en":"SMF.FailCreatePduSession._Ns.28"}', '由于终端设置错误请求的PDU会话类型与网络支持的PDU类型不一致。');
INSERT INTO "measure_title" VALUES (3617, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Ns.29', 'true', 'SmfFunction', '15M', '{"cn":"分网络切片的PDU会话建立失败次数_鉴权失败","en":"SMF.FailCreatePduSession._Ns.29"}', '在PDU会话建立过程中因终端设置或终端未签约导致鉴权失败一般为2B业务场景');
INSERT INTO "measure_title" VALUES (3618, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Ns.68', 'true', 'SmfFunction', '15M', '{"cn":"分网络切片的PDU会话建立失败次数_SSC模式不支持","en":"SMF.FailCreatePduSession._Ns.68"}', '终端设置原因终端请求的SSC模式和用户签约的不一致。');
INSERT INTO "measure_title" VALUES (3619, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Ns.27', 'true', 'SmfFunction', '15M', '{"cn":"分网络切片的PDU会话建立失败次数_终端使用未知DNN或者DNN缺失","en":"SMF.FailCreatePduSession._Ns.27"}', 'DNN未知或DNN存在缺失导致的失败');
INSERT INTO "measure_title" VALUES (3620, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Ns.33', 'true', 'SmfFunction', '15M', '{"cn":"分网络切片的PDU会话建立失败次数_终端请求的业务未签约","en":"SMF.FailCreatePduSession._Ns.33"}', '请求服务没有签约可能是DNN、PDU类型未签约导致');
INSERT INTO "measure_title" VALUES (3621, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Ns.46', 'true', 'SmfFunction', '15M', '{"cn":"分网络切片的PDU会话建立失败次数_终端离开本地数据网服务区域","en":"SMF.FailCreatePduSession._Ns.46"}', '超出LADN服务区');
INSERT INTO "measure_title" VALUES (3622, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话建立失败次数","en":"SMF.FailCreatePduSession._Dnn"}', '按照DNN统计UE发起的PDU会话建立被SMF拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3623, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Dnn.82', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话建立失败次数_终端完整性保护速率过低","en":"SMF.FailCreatePduSession._Dnn.82"}', '在会话建立及更新过程中终端支持的完整性保护速率小于5GC要求SMF可以拒绝');
INSERT INTO "measure_title" VALUES (3624, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Dnn.28', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话建立失败次数_PDU会话类型不支持","en":"SMF.FailCreatePduSession._Dnn.28"}', '由于终端设置错误请求的PDU会话类型与网络支持的PDU类型不一致。');
INSERT INTO "measure_title" VALUES (3625, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Dnn.29', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话建立失败次数_鉴权失败","en":"SMF.FailCreatePduSession._Dnn.29"}', '在PDU会话建立过程中因终端设置或终端未签约导致鉴权失败一般为2B业务场景');
INSERT INTO "measure_title" VALUES (3626, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Dnn.68', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话建立失败次数_SSC模式不支持","en":"SMF.FailCreatePduSession._Dnn.68"}', '终端设置原因终端请求的SSC模式和用户签约的不一致。');
INSERT INTO "measure_title" VALUES (3627, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Dnn.33', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话建立失败次数_终端请求的业务未签约","en":"SMF.FailCreatePduSession._Dnn.33"}', '请求服务没有签约可能是DNN、PDU类型未签约导致');
INSERT INTO "measure_title" VALUES (3628, 'SMF', 'SMFHA03', 'SMF.FailCreatePduSession._Dnn.46', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话建立失败次数_终端离开本地数据网服务区域","en":"SMF.FailCreatePduSession._Dnn.46"}', '超出LADN服务区');
INSERT INTO "measure_title" VALUES (3629, 'SMF', 'SMFHA04', 'SMF.AttSmfModifyPduSession', 'false', 'SmfFunction', '15M', '{"cn":"SMF发起的PDU会话修改请求次数","en":"SMF.AttSmfModifyPduSession"}', 'SMF发起的PDU会话修改请求次数。');
INSERT INTO "measure_title" VALUES (3630, 'SMF', 'SMFHA04', 'SMF.AttSmfModifyPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的PDU会话修改请求次数","en":"SMF.AttSmfModifyPduSession._Ns"}', '按照S-NSSAI统计SMF发起的PDU会话修改请求次数。');
INSERT INTO "measure_title" VALUES (3631, 'SMF', 'SMFHA04', 'SMF.AttSmfModifyPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的PDU会话修改请求次数","en":"SMF.AttSmfModifyPduSession._Dnn"}', '按照DNN统计SMF发起的PDU会话修改请求次数。');
INSERT INTO "measure_title" VALUES (3632, 'SMF', 'SMFHA05', 'SMF.SuccSmfModifyPduSession', 'false', 'SmfFunction', '15M', '{"cn":"SMF发起的PDU会话修改成功次数","en":"SMF.SuccSmfModifyPduSession"}', 'SMF发起的PDU会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3633, 'SMF', 'SMFHA05', 'SMF.SuccSmfModifyPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的SMF发起的PDU会话修改成功次数","en":"SMF.SuccSmfModifyPduSession._Ns"}', '按照S-NSSAI统计SMF发起的PDU会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3634, 'SMF', 'SMFHA05', 'SMF.SuccSmfModifyPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的SMF发起的PDU会话修改成功次数","en":"SMF.SuccSmfModifyPduSession._Dnn"}', '按照DNN统计SMF发起的PDU会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3635, 'SMF', 'SMFHA06', 'SMF.FailSmfModifyPduSession', 'false', 'SmfFunction', '15M', '{"cn":"SMF发起的PDU会话修改失败次数","en":"SMF.FailSmfModifyPduSession"}', 'SMF发起的PDU会话修改请求被拒绝的次数并按拒绝原因分类统计。
');
INSERT INTO "measure_title" VALUES (3636, 'SMF', 'SMFHA06', 'SMF.FailSmfModifyPduSession._Cause', 'true', 'SmfFunction', '15M', '{"cn":"分原因的SMF发起的PDU会话修改失败次数","en":"SMF.FailSmfModifyPduSession._Cause"}', 'SMF发起的PDU会话修改请求被拒绝的次数并按拒绝原因分类统计。
');
INSERT INTO "measure_title" VALUES (3637, 'SMF', 'SMFHA06', 'SMF.FailSmfModifyPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的SMF发起的PDU会话修改失败次数","en":"SMF.FailSmfModifyPduSession._Ns"}', '按照S-NSSAI统计SMF发起的PDU会话修改请求被拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3638, 'SMF', 'SMFHA06', 'SMF.FailSmfModifyPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的SMF发起的PDU会话修改失败次数","en":"SMF.FailSmfModifyPduSession._Dnn"}', '按照DNN统计SMF发起的PDU会话修改请求被拒绝的次数并按拒绝原因分类统计。
');
INSERT INTO "measure_title" VALUES (3639, 'SMF', 'SMFHA07', 'SMF.PduSessionCreateTime', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立流程平均时长","en":"SMF.PduSessionCreateTime"}', '成功的PDU会话建立流程的平均时长。
');
INSERT INTO "measure_title" VALUES (3640, 'SMF', 'SMFHA08', 'SMF.AttSmfModifyPduSession.Epsfb', 'false', 'SmfFunction', '15M', '{"cn":"EPSFALLBACK请求数","en":"SMF.AttSmfModifyPduSession.Epsfb"}', '用户发起的EPS fallback总的请求数');
INSERT INTO "measure_title" VALUES (3641, 'SMF', 'SMFHA08', 'SMF.SuccSmfModifyBearerResponse.Epsfb', 'false', 'SmfFunction', '15M', '{"cn":"EPSFALLBACK回落成功数","en":"SMF.SuccSmfModifyBearerResponse.Epsfb"}', '用户回落到4G以后在4G上修改承载成功数');
INSERT INTO "measure_title" VALUES (3642, 'SMF', 'SMFHB01', 'SMF.MeanPduSession', 'false', 'SmfFunction', '15M', '{"cn":"平均PDU会话数","en":"SMF.MeanPduSession"}', '一个统计周期内SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3643, 'SMF', 'SMFHB01', 'SMF.MeanPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的平均PDU会话数","en":"SMF.MeanPduSession._Ns"}', '一个统计周期内按照S-NSSAI统计SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3644, 'SMF', 'SMFHB01', 'SMF.MeanPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的平均PDU会话数","en":"SMF.MeanPduSession._Dnn"}', '一个统计周期内按照DNN统计SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3645, 'SMF', 'SMFHB02', 'SMF.MaxPduSession', 'false', 'SmfFunction', '15M', '{"cn":"最大PDU会话数","en":"SMF.MaxPduSession"}', '一个统计周期内SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3646, 'SMF', 'SMFHB02', 'SMF.MaxPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的最大PDU会话数","en":"SMF.MaxPduSession._Ns"}', '一个统计周期内按照S-NSSAI统计SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3647, 'SMF', 'SMFHB02', 'SMF.MaxPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的最大PDU会话数","en":"SMF.MaxPduSession._Dnn"}', '一个统计周期内按照DNN统计SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3648, 'SMF', 'SMFHB03', 'SMF.MeanQf', 'false', 'SmfFunction', '15M', '{"cn":"平均Qos流数","en":"SMF.MeanQf"}', '一个统计周期内SMF中的平均Qos流数。');
INSERT INTO "measure_title" VALUES (3649, 'SMF', 'SMFHB03', 'SMF.MeanQf._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的平均Qos流数","en":"SMF.MeanQf._Ns"}', '一个统计周期内按照S-NSSAI统计SMF中的平均QoS流数。');
INSERT INTO "measure_title" VALUES (3650, 'SMF', 'SMFHB03', 'SMF.MeanQf._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的平均Qos流数","en":"SMF.MeanQf._Dnn"}', '一个统计周期内按照DNN统计SMF中的平均QoS流数。');
INSERT INTO "measure_title" VALUES (3651, 'SMF', 'SMFHB04', 'SMF.MaxQf', 'false', 'SmfFunction', '15M', '{"cn":"最大Qos流数","en":"SMF.MaxQf"}', '一个统计周期内SMF中的最大Qos流数。');
INSERT INTO "measure_title" VALUES (3652, 'SMF', 'SMFHB04', 'SMF.MaxQf._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的最大Qos流数","en":"SMF.MaxQf._Ns"}', '一个统计周期内按照S-NSSAI统计SMF中的最大QoS流数。');
INSERT INTO "measure_title" VALUES (3653, 'SMF', 'SMFHB04', 'SMF.MaxQf._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的最大Qos流数","en":"SMF.MaxQf._Dnn"}', '一个统计周期内按照DNN统计SMF中的最大QoS流数。');
INSERT INTO "measure_title" VALUES (3654, 'SMF', 'SMFHC01', 'ME.MeanMeLoad', 'false', 'ManagedElement', '15M', '{"cn":"系统平均负荷","en":"ME.MeanMeLoad"}', '
指测量周期中,网元的虚拟机资源负荷的抽样平均值。网元的虚拟机资源负荷可取对网元影响最大的模块的负荷,或取不同模块的负荷的加权平均值,不同厂商设备的计算方法各不相同。');
INSERT INTO "measure_title" VALUES (3655, 'SMF', 'SMFHD01', 'SMF.MeanAllcAddr', 'false', 'AddrPool', '15M', '{"cn":"平均分配的地址数","en":"SMF.MeanAllcAddr"}', 'SMF为UE平均分配的地址数。');
INSERT INTO "measure_title" VALUES (3656, 'SMF', 'SMFHD01', 'SMF.MeanAllcAddr._Ns', 'true', 'AddrPool', '15M', '{"cn":"分切片的平均分配的地址数","en":"SMF.MeanAllcAddr._Ns"}', '按照S-NSSAI统计统计的SMF为UE平均分配的地址数。');
INSERT INTO "measure_title" VALUES (3657, 'SMF', 'SMFHD02', 'SMF.MaxAllcAddr', 'false', 'AddrPool', '15M', '{"cn":"最大分配的地址数","en":"SMF.MaxAllcAddr"}', 'SMF为UE最大分配的地址数。');
INSERT INTO "measure_title" VALUES (3658, 'SMF', 'SMFHD02', 'SMF.MaxAllcAddr._Ns', 'true', 'AddrPool', '15M', '{"cn":"分切片的最大分配的地址数","en":"SMF.MaxAllcAddr._Ns"}', '按照S-NSSAI统计的SMF为UE最大分配的地址数。');
INSERT INTO "measure_title" VALUES (3659, 'SMF', 'SMFHE01', 'SMF.SmPlcyCtrlCreateReq', 'false', 'EpRpDynN7Smf', '15M', '{"cn":"创建SM策略请求的次数","en":"SMF.SmPlcyCtrlCreateReq"}', 'SMF向PCF发起创建SM策略请求的次数。');
INSERT INTO "measure_title" VALUES (3660, 'SMF', 'SMFHE02', 'SMF.SmPlcyCtrlCreateSucc', 'false', 'EpRpDynN7Smf', '15M', '{"cn":"创建SM策略成功次数","en":"SMF.SmPlcyCtrlCreateSucc"}', 'PCF向SMF返回创建SM策略成功的次数。');
INSERT INTO "measure_title" VALUES (3661, 'SMF', 'SMFHE03', 'SMF.SmPlcyCtrlUpdateReq', 'false', 'EpRpDynN7Smf', '15M', '{"cn":"更新SM策略请求的次数","en":"SMF.SmPlcyCtrlUpdateReq"}', 'SMF向PCF发起更新SM策略请求的次数。');
INSERT INTO "measure_title" VALUES (3662, 'SMF', 'SMFHE04', 'SMF.SmPlcyCtrlUpdateSucc', 'false', 'EpRpDynN7Smf', '15M', '{"cn":"更新SM策略成功次数","en":"SMF.SmPlcyCtrlUpdateSucc"}', 'PCF向SMF返回更新SM策略成功的次数。');
INSERT INTO "measure_title" VALUES (3663, 'SMF', 'SMFHE05', 'SMF.SmPlcyCtrlDeleteReq', 'false', 'EpRpDynN7Smf', '15M', '{"cn":"删除策略请求的次数","en":"SMF.SmPlcyCtrlDeleteReq"}', 'SMF向PCF发起删除SM策略请求的次数。');
INSERT INTO "measure_title" VALUES (3664, 'SMF', 'SMFHE06', 'SMF.SmPlcyCtrlDeleteSucc', 'false', 'EpRpDynN7Smf', '15M', '{"cn":"删除SM策略成功次数","en":"SMF.SmPlcyCtrlDeleteSucc"}', 'PCF向SMF返回删除SM策略成功的次数。');
INSERT INTO "measure_title" VALUES (3665, 'SMF', 'SMFHF01', 'SMF.UecmRegReq', 'false', 'EpRpDynN10Smf', '15M', '{"cn":"UE上下文注册请求次数","en":"SMF.UecmRegReq"}', 'SMF向UDM发起UE上下文注册请求的次数');
INSERT INTO "measure_title" VALUES (3666, 'SMF', 'SMFHF02', 'SMF.UecmRegSucc', 'false', 'EpRpDynN10Smf', '15M', '{"cn":"UE上下文注册成功次数","en":"SMF.UecmRegSucc"}', 'SMF收到UDM返回的UE上下文注册成功的次数');
INSERT INTO "measure_title" VALUES (3667, 'SMF', 'SMFHF03', 'SMF.UecmRegFail', 'false', 'EpRpDynN10Smf', '15M', '{"cn":"UE上下文注册失败次数","en":"SMF.UecmRegFail"}', 'SMF收到UDM返回的UE上下文注册失败的次数');
INSERT INTO "measure_title" VALUES (3668, 'SMF', 'SMFHF03', 'SMF.UecmRegFail._Cause', 'true', 'EpRpDynN10Smf', '15M', '{"cn":"分原因的UE上下文注册失败次数","en":"SMF.UecmRegFail._Cause"}', 'SMF收到UDM返回的UE上下文注册失败的次数');
INSERT INTO "measure_title" VALUES (3669, 'SMF', 'SMFHF03', 'SMF.UecmRegFail.Unknown5GSub', 'false', 'EpRpDynN10Smf', '15M', '{"cn":"UE上下文注册失败次数_未签约5G","en":"SMF.UecmRegFail.Unknown5GSub"}', 'SMF收到UDM返回的UE上下文注册失败的次数');
INSERT INTO "measure_title" VALUES (3670, 'SMF', 'SMFHF03', 'SMF.UecmRegFail.RoamNotAllowed', 'false', 'EpRpDynN10Smf', '15M', '{"cn":"UE上下文注册失败次数_漫游不允许","en":"SMF.UecmRegFail.RoamNotAllowed"}', 'SMF收到UDM返回的UE上下文注册失败的次数');
INSERT INTO "measure_title" VALUES (3671, 'SMF', 'SMFHF03', 'SMF.UecmRegFail.DnnNotAllowed', 'false', 'EpRpDynN10Smf', '15M', '{"cn":"UE上下文注册失败次数_DNN未授权","en":"SMF.UecmRegFail.DnnNotAllowed"}', 'SMF收到UDM返回的UE上下文注册失败的次数');
INSERT INTO "measure_title" VALUES (3672, 'SMF', 'SMFHF03', 'SMF.UecmRegFail.UserNotFound', 'false', 'EpRpDynN10Smf', '15M', '{"cn":"UE上下文注册失败次数_未找到用户","en":"SMF.UecmRegFail.UserNotFound"}', 'SMF收到UDM返回的UE上下文注册失败的次数');
INSERT INTO "measure_title" VALUES (3673, 'SMF', 'SMFHF03', 'SMF.UecmDeregReq', 'false', 'EpRpDynN10Smf', '15M', '{"cn":"UE上下文去注册请求次数","en":"SMF.UecmDeregReq"}', 'SMF向UDM发起UE上下文去注册请求的次数');
INSERT INTO "measure_title" VALUES (3674, 'SMF', 'SMFHF04', 'SMF.UecmDeregSucc', 'false', 'EpRpDynN10Smf', '15M', '{"cn":"UE上下文去注册成功次数","en":"SMF.UecmDeregSucc"}', 'SMF向UDM发起UE上下文去注册成功的次数');
INSERT INTO "measure_title" VALUES (3675, 'SMF', 'SMFHG01', 'ASMF.AttCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMFPDU会话建立请求次数","en":"ASMF.AttCreatePduSession"}', 'A-SMF/H-SMF UE发起的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3676, 'SMF', 'SMFHG01', 'ASMF.AttCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分切片的PDU会话建立请求次数","en":"ASMF.AttCreatePduSession._Ns"}', 'A-SMF/H-SMF按照S-NSSAI统计UE发起的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3677, 'SMF', 'SMFHG01', 'ASMF.AttCreatePduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分DNN的PDU会话建立请求次数","en":"ASMF.AttCreatePduSession._Dnn"}', 'A-SMF/H-SMF按照DNN统计UE发起的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3678, 'SMF', 'SMFHG02', 'ASMF.SuccCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMFPDU会话建立成功次数","en":"ASMF.SuccCreatePduSession"}', 'A-SMF/H-SMF收到 UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3679, 'SMF', 'SMFHG02', 'ASMF.SuccCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分切片的PDU会话建立成功次数","en":"ASMF.SuccCreatePduSession._Ns"}', '按照S-NSSAI统计A-SMF/H-SMF收到UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3680, 'SMF', 'SMFHG02', 'ASMF.SuccCreatePduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分DNN的PDU会话建立成功次数","en":"ASMF.SuccCreatePduSession._Dnn"}', '按照DNN统计A-SMF/H-SMF收到UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3681, 'SMF', 'SMFHG03', 'ASMF.FailCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMFPDU会话建立失败次数","en":"ASMF.FailCreatePduSession"}', 'UE发起的PDU会话建立被A-SMF/H-SMF拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3682, 'SMF', 'SMFHG03', 'ASMF.FailCreatePduSession._Cause', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分原因的PDU会话建立失败次数","en":"ASMF.FailCreatePduSession._Cause"}', 'UE发起的PDU会话建立被A-SMF/H-SMF拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3683, 'SMF', 'SMFHG03', 'ASMF.FailCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分切片的PDU会话建立失败次数","en":"ASMF.FailCreatePduSession._Ns"}', '按照S-NSSAI统计UE发起的PDU会话建立被A-SMF/H-SMF拒绝的次数。');
INSERT INTO "measure_title" VALUES (3684, 'SMF', 'SMFHG03', 'ASMF.FailCreatePduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分DNN的PDU会话建立失败次数","en":"ASMF.FailCreatePduSession._Dnn"}', '按照DNN统计UE发起的PDU会话建立被A-SMF/H-SMF拒绝的次数。');
INSERT INTO "measure_title" VALUES (3685, 'SMF', 'SMFHG04', 'ASMF.AttSmfModifyPduSession', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF发起的PDU会话修改请求次数","en":"ASMF.AttSmfModifyPduSession"}', 'A-SMF/H-SMF发起的PDU会话修改请求次数。');
INSERT INTO "measure_title" VALUES (3686, 'SMF', 'SMFHG04', 'ASMF.AttSmfModifyPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF发起的分切片的PDU会话修改请求次数","en":"ASMF.AttSmfModifyPduSession._Ns"}', '按照S-NSSAI统计A-SMF/H-SMF发起的PDU会话修改请求次数。');
INSERT INTO "measure_title" VALUES (3687, 'SMF', 'SMFHG04', 'ASMF.AttSmfModifyPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF发起的分DNN的PDU会话修改请求次数","en":"ASMF.AttSmfModifyPduSession._Dnn"}', '按照DNN统计A-SMF/H-SMF发起的PDU会话修改请求次数。');
INSERT INTO "measure_title" VALUES (3688, 'SMF', 'SMFHG05', 'ASMF.SuccSmfModifyPduSession', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF发起的PDU会话修改成功次数","en":"ASMF.SuccSmfModifyPduSession"}', 'A-SMF/H-SMF发起的PDU会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3689, 'SMF', 'SMFHG05', 'ASMF.SuccSmfModifyPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的A-SMF/H-SMF发起的PDU会话修改成功次数","en":"ASMF.SuccSmfModifyPduSession._Ns"}', '按照S-NSSAI统计A-SMF/H-SMF发起的PDU会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3690, 'SMF', 'SMFHG05', 'ASMF.SuccSmfModifyPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的A-SMF/H-SMF发起的PDU会话修改成功次数","en":"ASMF.SuccSmfModifyPduSession._Dnn"}', '按照DNN统计A-SMF/H-SMF发起的PDU会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3691, 'SMF', 'SMFHG06', 'ASMF.FailSmfModifyPduSession', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF发起的PDU会话修改失败次数","en":"ASMF.FailSmfModifyPduSession"}', 'A-SMF/H-SMF发起的PDU会话修改请求被拒绝的次数并按拒绝原因分类统计。
');
INSERT INTO "measure_title" VALUES (3692, 'SMF', 'SMFHG06', 'ASMF.FailSmfModifyPduSession._Cause', 'true', 'SmfFunction', '15M', '{"cn":"分原因的A-SMF/H-SMF发起的PDU会话修改失败次数","en":"ASMF.FailSmfModifyPduSession._Cause"}', 'A-SMF/H-SMF发起的PDU会话修改请求被拒绝的次数并按拒绝原因分类统计。
');
INSERT INTO "measure_title" VALUES (3693, 'SMF', 'SMFHG06', 'ASMF.FailSmfModifyPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的A-SMF/H-SMF发起的PDU会话修改失败次数","en":"ASMF.FailSmfModifyPduSession._Ns"}', '按照S-NSSAI统计A-SMF/H-SMF发起的PDU会话修改请求被拒绝的次数。');
INSERT INTO "measure_title" VALUES (3694, 'SMF', 'SMFHG06', 'ASMF.FailSmfModifyPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"分DNN的A-SMF/H-SMF发起的PDU会话修改失败次数","en":"ASMF.FailSmfModifyPduSession._Dnn"}', '按照DNN统计A-SMF/H-SMF发起的PDU会话修改请求被拒绝的次数。
');
INSERT INTO "measure_title" VALUES (3695, 'SMF', 'SMFHG07', 'ASMF.PduSessionCreateTime', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMFPDU会话建立流程平均时长","en":"ASMF.PduSessionCreateTime"}', '成功的A-SMF/H-SMF PDU会话建立流程的平均时长。
');
INSERT INTO "measure_title" VALUES (3696, 'SMF', 'SMFHH01', 'ASMF.MeanPduSession', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF平均PDU会话数","en":"ASMF.MeanPduSession"}', '一个统计周期内A-SMF/H-SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3697, 'SMF', 'SMFHH01', 'ASMF.MeanPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分切片的平均PDU会话数","en":"ASMF.MeanPduSession._Ns"}', '一个统计周期内按照S-NSSAI统计A-SMF/H-SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3698, 'SMF', 'SMFHH01', 'ASMF.MeanPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分DNN的平均PDU会话数","en":"ASMF.MeanPduSession._Dnn"}', '一个统计周期内按照DNN统计A-SMF/H-SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3699, 'SMF', 'SMFHH02', 'ASMF.MaxPduSession', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF最大PDU会话数","en":"ASMF.MaxPduSession"}', '一个统计周期内A-SMF/H-SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3700, 'SMF', 'SMFHH02', 'ASMF.MaxPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分切片的最大PDU会话数","en":"ASMF.MaxPduSession._Ns"}', '一个统计周期内按照S-NSSAI统计A-SMF/H-SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3701, 'SMF', 'SMFHH02', 'ASMF.MaxPduSession._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分DNN的最大PDU会话数","en":"ASMF.MaxPduSession._Dnn"}', '一个统计周期内按照DNN统计A-SMF/H-SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3702, 'SMF', 'SMFHH03', 'ASMF.MeanQf', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF平均Qos流数","en":"ASMF.MeanQf"}', '一个统计周期内A-SMF/H-SMF中的平均Qos流数。');
INSERT INTO "measure_title" VALUES (3703, 'SMF', 'SMFHH03', 'ASMF.MeanQf._Ns', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分切片的平均Qos流数","en":"ASMF.MeanQf._Ns"}', '一个统计周期内按照S-NSSAI统计A-SMF/H-SMF中的平均QoS流数。');
INSERT INTO "measure_title" VALUES (3704, 'SMF', 'SMFHH03', 'ASMF.MeanQf._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分DNN的平均Qos流数","en":"ASMF.MeanQf._Dnn"}', '一个统计周期内按照DNN统计A-SMF/H-SMF中的平均QoS流数。');
INSERT INTO "measure_title" VALUES (3705, 'SMF', 'SMFHH04', 'ASMF.MaxQf', 'false', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF最大Qos流数","en":"ASMF.MaxQf"}', '一个统计周期内A-SMF/H-SMF中的最大Qos流数。');
INSERT INTO "measure_title" VALUES (3706, 'SMF', 'SMFHH04', 'ASMF.MaxQf._Ns', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分切片的最大Qos流数","en":"ASMF.MaxQf._Ns"}', '一个统计周期内按照S-NSSAI统计A-SMF/H-SMF中的最大QoS流数。');
INSERT INTO "measure_title" VALUES (3707, 'SMF', 'SMFHH04', 'ASMF.MaxQf._Dnn', 'true', 'SmfFunction', '15M', '{"cn":"A-SMF/H-SMF分DNN的最大Qos流数","en":"ASMF.MaxQf._Dnn"}', '一个统计周期内按照DNN统计A-SMF/H-SMF中的最大QoS流数。');
INSERT INTO "measure_title" VALUES (3708, 'SMF', 'SMFHI01', 'ISMF.AttCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMFPDU会话建立请求次数","en":"ISMF.AttCreatePduSession"}', 'I-SMF/V-SMF UE发送的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3709, 'SMF', 'SMFHI01', 'ISMF.AttCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF分切片的PDU会话建立请求次数","en":"ISMF.AttCreatePduSession._Ns"}', 'I-SMF/V-SMF按照S-NSSAI统计UE发起的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3710, 'SMF', 'SMFHI02', 'ISMF.SuccCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMFPDU会话建立成功次数","en":"ISMF.SuccCreatePduSession"}', 'I-SMF/V-SMF收到 UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3711, 'SMF', 'SMFHI02', 'ISMF.SuccCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF分切片的PDU会话建立成功次数","en":"ISMF.SuccCreatePduSession._Ns"}', '按照S-NSSAI统计I-SMF/V-SMF收到UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3712, 'SMF', 'SMFHI03', 'ISMF.FailCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMFPDU会话建立失败次数","en":"ISMF.FailCreatePduSession"}', 'UE发起的PDU会话建立被I-SMF/V-SMF拒绝的次数');
INSERT INTO "measure_title" VALUES (3713, 'SMF', 'SMFHI03', 'ISMF.FailCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF分切片的PDU会话建立失败次数","en":"ISMF.FailCreatePduSession._Ns"}', '按照S-NSSAI统计UE发起的PDU会话建立被I-SMF/V-SMF拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3714, 'SMF', 'SMFHI04', 'ISMF.SendSmfModifyPduSession', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF发送的PDU会话修改命令次数","en":"ISMF.SendSmfModifyPduSession"}', 'I-SMF/V-SMF发送的PDU会话修改命令次数。');
INSERT INTO "measure_title" VALUES (3715, 'SMF', 'SMFHI04', 'ISMF.SendSmfModifyPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF发送的分切片的PDU会话修改命令次数","en":"ISMF.SendSmfModifyPduSession._Ns"}', '按照S-NSSAI统计I-SMF/V-SMF发送的PDU会话修改次数。');
INSERT INTO "measure_title" VALUES (3716, 'SMF', 'SMFHI05', 'ISMF.SuccSmfModifyPduSession', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMFPDU会话修改成功次数","en":"ISMF.SuccSmfModifyPduSession"}', 'I-SMF/V-SMF PDU会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3717, 'SMF', 'SMFHI05', 'ISMF.SuccSmfModifyPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的I-SMF/V-SMFPDU会话修改成功次数","en":"ISMF.SuccSmfModifyPduSession._Ns"}', '按照S-NSSAI统计I-SMF/V-SMF PDU会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3718, 'SMF', 'SMFHI06', 'ISMF.FailSmfModifyPduSession', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMFPDU会话修改失败次数","en":"ISMF.FailSmfModifyPduSession"}', 'I-SMF/V-SMF PDU会话修改被拒绝的次数。
');
INSERT INTO "measure_title" VALUES (3719, 'SMF', 'SMFHI06', 'ISMF.FailSmfModifyPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的I-SMF/V-SMFPDU会话修改失败次数","en":"ISMF.FailSmfModifyPduSession._Ns"}', '按照S-NSSAI统计I-SMF/V-SMF PDU会话修改被拒绝的次数。');
INSERT INTO "measure_title" VALUES (3720, 'SMF', 'SMFHI07', 'ISMF.PduSessionCreateTime', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMFPDU会话建立流程平均时长","en":"ISMF.PduSessionCreateTime"}', '成功的I-SMF/V-SMF PDU会话建立流程的平均时长。
');
INSERT INTO "measure_title" VALUES (3721, 'SMF', 'SMFHJ01', 'ISMF.MeanPduSession', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF平均PDU会话数","en":"ISMF.MeanPduSession"}', '一个统计周期内I-SMF/V-SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3722, 'SMF', 'SMFHJ01', 'ISMF.MeanPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF分切片的平均PDU会话数","en":"ISMF.MeanPduSession._Ns"}', '一个统计周期内按照S-NSSAI统计I-SMF/V-SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3723, 'SMF', 'SMFHJ02', 'ISMF.MaxPduSession', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF最大PDU会话数","en":"ISMF.MaxPduSession"}', '一个统计周期内I-SMF/V-SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3724, 'SMF', 'SMFHJ02', 'ISMF.MaxPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF分切片的最大PDU会话数","en":"ISMF.MaxPduSession._Ns"}', '一个统计周期内按照S-NSSAI统计I-SMF/V-SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3725, 'SMF', 'SMFHJ03', 'ISMF.MeanQf', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF平均Qos流数","en":"ISMF.MeanQf"}', '一个统计周期内I-SMF/V-SMF中的平均Qos流数。');
INSERT INTO "measure_title" VALUES (3726, 'SMF', 'SMFHJ03', 'ISMF.MeanQf._Ns', 'true', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF分切片的平均Qos流数","en":"ISMF.MeanQf._Ns"}', '一个统计周期内按照S-NSSAI统计I-SMF/V-SMF中的平均QoS流数。');
INSERT INTO "measure_title" VALUES (3727, 'SMF', 'SMFHJ04', 'ISMF.MaxQf', 'false', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF最大Qos流数","en":"ISMF.MaxQf"}', '一个统计周期内I-SMF/V-SMF中的最大Qos流数。');
INSERT INTO "measure_title" VALUES (3728, 'SMF', 'SMFHJ04', 'ISMF.MaxQf._Ns', 'true', 'SmfFunction', '15M', '{"cn":"I-SMF/V-SMF分切片的最大Qos流数","en":"ISMF.MaxQf._Ns"}', '一个统计周期内按照S-NSSAI统计I-SMF/V-SMF中的最大QoS流数。');
INSERT INTO "measure_title" VALUES (3729, 'SMF', 'SMFHK01', 'SMF.AttAccessRequestByUPF', 'false', 'SmfFunction', '15M', '{"cn":"SMF发送UPF转接的AccessRequest消息数","en":"SMF.AttAccessRequestByUPF"}', 'SMF向UPF转接的AAA服务器发起鉴权请求的尝试次数。');
INSERT INTO "measure_title" VALUES (3730, 'SMF', 'SMFHK02', 'SMF.SuccAccessAcceptByUPF', 'false', 'SmfFunction', '15M', '{"cn":"SMF接收UPF转接的AccessAccept消息数","en":"SMF.SuccAccessAcceptByUPF"}', 'SMF收到UPF转接的AAA服务器鉴权请求接受次数');
INSERT INTO "measure_title" VALUES (3731, 'SMF', 'SMFHK03', 'SMF.AttAccountingStartRequestByUPF', 'false', 'SmfFunction', '15M', '{"cn":"SMF发送UPF转接的AccountingStartRequest消息数","en":"SMF.AttAccountingStartRequestByUPF"}', 'SMF向UPF转接的AAA服务器发起计费开始请求的尝试次数。');
INSERT INTO "measure_title" VALUES (3732, 'SMF', 'SMFHK04', 'SMF.SuccAccountingStartResponseByUPF', 'false', 'SmfFunction', '15M', '{"cn":"SMF接收UPF转接的AccoutingStartResponse消息数","en":"SMF.SuccAccountingStartResponseByUPF"}', 'SMF收到UPF转接的AAA服务器计费开始应答次数');
INSERT INTO "measure_title" VALUES (3733, 'SMF', 'SMFHL01', 'SMF.AttChargingDataReq', 'false', 'SmfFunction', '15M', '{"cn":"N40接口发送激活请求消息数","en":"SMF.AttChargingDataReq"}', 'N40接口上发送Nchf_ConvergedCharging_Create Request消息的数目');
INSERT INTO "measure_title" VALUES (3734, 'SMF', 'SMFHL02', 'SMF.RecvChargingDataRsp', 'false', 'SmfFunction', '15M', '{"cn":"收到Nchf_ConvergedCharging_CreateResponse次数","en":"SMF.RecvChargingDataRsp"}', 'N40接口上接收Nchf_ConvergedCharging_Create Response消息的数目');
INSERT INTO "measure_title" VALUES (3735, 'SMF', 'SMFHL03', 'SMF.ReAttChargingDataReq', 'false', 'SmfFunction', '15M', '{"cn":"重发Nchf_ConvergedCharging_CreateRequest次数","en":"SMF.ReAttChargingDataReq"}', 'N40接口上重发Nchf_ConvergedCharging_Create Request消息的数目');
INSERT INTO "measure_title" VALUES (3736, 'SMF', 'SMFHM01', 'SMF.BsfRecPcfQuery', 'false', 'SmfFunction', '15M', '{"cn":"BSF收到查询请求次数","en":"SMF.BsfRecPcfQuery"}', 'BSF收到查询PCF请求次数');
INSERT INTO "measure_title" VALUES (3737, 'SMF', 'SMFHM02', 'SMF.BsfRspPcfQuery', 'false', 'SmfFunction', '15M', '{"cn":"BSF发送查询应答次数","en":"SMF.BsfRspPcfQuery"}', 'BSF发送查询PCF成功次数');
INSERT INTO "measure_title" VALUES (3738, 'UDM', 'UDMHA01', 'UDM.AmfUecmRegReq', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM注册请求次数","en":"UDM.AmfUecmRegReq"}', '统计UDM收到的AMF发起的UECM注册请求次数');
INSERT INTO "measure_title" VALUES (3739, 'UDM', 'UDMHA02', 'UDM.AmfUecmRegSucc', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM注册成功次数","en":"UDM.AmfUecmRegSucc"}', '统计UDM返回的成功的AMF注册响应次数');
INSERT INTO "measure_title" VALUES (3740, 'UDM', 'UDMHA03', 'UDM.AmfUecmRegUpdateReq', 'false', 'UdmFunction', '15M', '{"cn":"更新注册参数请求次数","en":"UDM.AmfUecmRegUpdateReq"}', '更新注册参数请求次数');
INSERT INTO "measure_title" VALUES (3741, 'UDM', 'UDMHA04', 'UDM.AmfUecmRegUpdateSucc', 'false', 'UdmFunction', '15M', '{"cn":"更新注册参数成功次数","en":"UDM.AmfUecmRegUpdateSucc"}', '更新注册参数成功次数');
INSERT INTO "measure_title" VALUES (3742, 'UDM', 'UDMHA05', 'UDM.AmfUecmDeregReq', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM去注册请求次数","en":"UDM.AmfUecmDeregReq"}', '统计AMF发起的UECM去注册请求次数');
INSERT INTO "measure_title" VALUES (3743, 'UDM', 'UDMHA06', 'UDM.AmfUecmDeregSucc', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM去注册成功次数","en":"UDM.AmfUecmDeregSucc"}', '统计AMF发起的UECM去注册成功次数');
INSERT INTO "measure_title" VALUES (3744, 'UDM', 'UDMHA07', 'UDM.SmfUecmRegReq', 'false', 'UdmFunction', '15M', '{"cn":"SMF发起的UECM注册请求次数","en":"UDM.SmfUecmRegReq"}', '统计SMF发起的用户上下文注册请求次数');
INSERT INTO "measure_title" VALUES (3745, 'UDM', 'UDMHA08', 'UDM.SmfUecmRegSucc', 'false', 'UdmFunction', '15M', '{"cn":"SMF发起的UECM注册成功次数","en":"UDM.SmfUecmRegSucc"}', '统计UDM返回的成功的用户上下文注册响应次数');
INSERT INTO "measure_title" VALUES (3746, 'UDM', 'UDMHA09', 'UDM.SmfUecmDeregReq', 'false', 'UdmFunction', '15M', '{"cn":"SMF发起的UECM去注册请求次数","en":"UDM.SmfUecmDeregReq"}', '统计SMF发起的用户上下文去注册请求次数');
INSERT INTO "measure_title" VALUES (3747, 'UDM', 'UDMHA10', 'UDM.SmfUecmDeregSucc', 'false', 'UdmFunction', '15M', '{"cn":"SMF发起的UECM去注册成功次数","en":"UDM.SmfUecmDeregSucc"}', '统计UDM返回的成功的用户上下文去注册响应次数');
INSERT INTO "measure_title" VALUES (3748, 'UDM', 'UDMHA11', 'UDM.SdmGetReq', 'false', 'UdmFunction', '15M', '{"cn":"获取用户数据请求次数","en":"UDM.SdmGetReq"}', '统计UDM收到的获取用户数据请求次数');
INSERT INTO "measure_title" VALUES (3749, 'UDM', 'UDMHA12', 'UDM.SdmGetSucc', 'false', 'UdmFunction', '15M', '{"cn":"获取用户数据成功次数","en":"UDM.SdmGetSucc"}', '统计UDM成功返回用户数据次数');
INSERT INTO "measure_title" VALUES (3750, 'UDM', 'UDMHA13', 'UDM.SdmNotif', 'false', 'UdmFunction', '15M', '{"cn":"用户数据变化通知次数","en":"UDM.SdmNotif"}', '统计UDM发送用户数据变化通知次数');
INSERT INTO "measure_title" VALUES (3751, 'UDM', 'UDMHA14', 'UDM.SdmSubscrReq', 'false', 'UdmFunction', '15M', '{"cn":"订阅用户数据请求次数","en":"UDM.SdmSubscrReq"}', '统计UDM收到的订阅用户数据相关通知请求次数');
INSERT INTO "measure_title" VALUES (3752, 'UDM', 'UDMHA15', 'UDM.SdmSubscrSucc', 'false', 'UdmFunction', '15M', '{"cn":"订阅用户数据成功次数","en":"UDM.SdmSubscrSucc"}', '统计UDM返回的订阅用户数据相关通知成功次数');
INSERT INTO "measure_title" VALUES (3753, 'UDM', 'UDMHA16', 'UDM.SdmUnSubscrReq', 'false', 'UdmFunction', '15M', '{"cn":"去订阅用户数据请求次数","en":"UDM.SdmUnSubscrReq"}', '统计UDM收到的去订阅用户数据相关通知请求次数');
INSERT INTO "measure_title" VALUES (3754, 'UDM', 'UDMHA17', 'UDM.SdmUnSubscrSucc', 'false', 'UdmFunction', '15M', '{"cn":"去订阅用户数据成功次数","en":"UDM.SdmUnSubscrSucc"}', '统计UDM返回的去订阅用户数据相关通知成功次数');
INSERT INTO "measure_title" VALUES (3755, 'UDM', 'UDMHA18', 'UDM.UecmDeregNotif', 'false', 'UdmFunction', '15M', '{"cn":"去注册通知次数","en":"UDM.UecmDeregNotif"}', '统计UDM发送的去注册通知次数');
INSERT INTO "measure_title" VALUES (3756, 'UDM', 'UDMHA19', 'UDM.SdmGetUserNotFound', 'false', 'UdmFunction', '15M', '{"cn":"获取用户数据返回用户不存在消息总数","en":"UDM.SdmGetUserNotFound"}', '统计获取用户数据时UDM返回用户不存在消息总数');
INSERT INTO "measure_title" VALUES (3757, 'UDM', 'UDMHA20', 'UDM.SdmGetDataNotFound', 'false', 'UdmFunction', '15M', '{"cn":"获取用户数据返回签约数据不存在消息总数","en":"UDM.SdmGetDataNotFound"}', '统计获取用户数据时UDM返回签约数据不存在消息总数');
INSERT INTO "measure_title" VALUES (3758, 'UDM', 'UDMHA21', 'UDM.AmfUecmRegUserNotFound', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM注册返回用户不存在消息总数","en":"UDM.AmfUecmRegUserNotFound"}', 'AMF发起的UECM注册返回时UDM返回用户不存在消息总数');
INSERT INTO "measure_title" VALUES (3759, 'UDM', 'UDMHA22', 'UDM.AmfUecmRegUnknownSub', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM注册返回未签约5G业务消息总数","en":"UDM.AmfUecmRegUnknownSub"}', 'AMF发起的UECM注册返回时UDM返回未签约5G业务消息总数');
INSERT INTO "measure_title" VALUES (3760, 'UDM', 'UDMHA23', 'UDM.AmfUecmRegNoPsSub', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM注册返回未签约PS业务消息总数","en":"UDM.AmfUecmRegNoPsSub"}', 'AMF发起的UECM注册返回时UDM返回未签约PS业务消息总数');
INSERT INTO "measure_title" VALUES (3761, 'UDM', 'UDMHA24', 'UDM.AmfUecmRegRoamNotAllowed', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM注册返回漫游不允许消息总数","en":"UDM.AmfUecmRegRoamNotAllowed"}', 'AMF发起的UECM注册返回时UDM返回漫游不允许消息总数');
INSERT INTO "measure_title" VALUES (3762, 'UDM', 'UDMHA25', 'UDM.AmfUecmRegRatNotAllowed', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM注册返回RAT不允许消息总数","en":"UDM.AmfUecmRegRatNotAllowed"}', 'AMF发起的UECM注册返回时UDM返回RAT不允许消息总数');
INSERT INTO "measure_title" VALUES (3763, 'UDM', 'UDMHA26', 'UDM.AmfUecmRegContextNotFound', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM注册返回上下文不存在消息总数","en":"UDM.AmfUecmRegContextNotFound"}', 'AMF发起的UECM注册返回时UDM返回上下文不存在消息总数');
INSERT INTO "measure_title" VALUES (3764, 'UDM', 'UDMHA27', 'UDM.AmfUecmRegReAuth', 'false', 'UdmFunction', '15M', '{"cn":"AMF发起的UECM注册返回UE未鉴权总数","en":"UDM.AmfUecmRegReAuth"}', 'AMF发起的UECM注册返回时UDM返回UE未鉴权总数');
INSERT INTO "measure_title" VALUES (3765, 'UDM', 'UDMHA28', 'UDM.SmfUecmRegUserNotFound', 'false', 'UdmFunction', '15M', '{"cn":"SMF发起的UECM注册返回用户不存在消息总数","en":"UDM.SmfUecmRegUserNotFound"}', 'SMF发起的UECM注册返回时UDM返回用户不存在消息总数');
INSERT INTO "measure_title" VALUES (3766, 'UDM', 'UDMHA29', 'UDM.SmfUecmRegUnknownSub', 'false', 'UdmFunction', '15M', '{"cn":"SMF发起的UECM注册返回未签约5G业务消息总数","en":"UDM.SmfUecmRegUnknownSub"}', 'SMF发起的UECM注册返回时UDM返回未签约5G业务消息总数');
INSERT INTO "measure_title" VALUES (3767, 'UDM', 'UDMHA30', 'UDM.SmfUecmRegRoamNotAllowed', 'false', 'UdmFunction', '15M', '{"cn":"SMF发起的UECM注册返回漫游不允许消息总数","en":"UDM.SmfUecmRegRoamNotAllowed"}', 'SMF发起的UECM注册返回时UDM返回漫游不允许消息总数');
INSERT INTO "measure_title" VALUES (3768, 'UDM', 'UDMHA31', 'UDM.SmfUecmRegDnnNotAllowed', 'false', 'UdmFunction', '15M', '{"cn":"SMF发起的UECM注册返回DNN不允许消息总数","en":"UDM.SmfUecmRegDnnNotAllowed"}', 'SMF发起的UECM注册返回时UDM返回DNN不允许消息总数');
INSERT INTO "measure_title" VALUES (3769, 'UDM', 'UDMHB01', 'UDR.5gSupi', 'false', 'UdrFunction', '15M', '{"cn":"5G网络SUPI数","en":"UDR.5gSupi"}', '统计UDR存储的SUPI数最新值');
INSERT INTO "measure_title" VALUES (3770, 'UDM', 'UDMHB02', 'UDR.5gSub', 'false', 'UdrFunction', '15M', '{"cn":"5G用户数","en":"UDR.5gSub"}', '统计UDR存储的5G MSISDN数最新值');
INSERT INTO "measure_title" VALUES (3771, 'UDM', 'UDMHB03', 'UDR.5gActSub', 'false', 'UdrFunction', '15M', '{"cn":"5G活动用户数","en":"UDR.5gActSub"}', '统计UDR存储的有5G位置信息的MSISDN用户数最新值');
INSERT INTO "measure_title" VALUES (3772, 'UDM', 'UDMHC01', 'Ausf.UeAuthReq', 'false', 'AusfFunction', '15M', '{"cn":"鉴权请求次数","en":"Ausf.UeAuthReq"}', 'AUSF收到的鉴权请求次数');
INSERT INTO "measure_title" VALUES (3773, 'UDM', 'UDMHC02', 'Ausf.UeAuthAnsSucc', 'false', 'AusfFunction', '15M', '{"cn":"鉴权成功次数","en":"Ausf.UeAuthAnsSucc"}', 'AUSF返回鉴权成功响应次数');
INSERT INTO "measure_title" VALUES (3774, 'UDM', 'UDMHC03', 'Ausf.UeAuthAnsUserNotFound', 'false', 'AusfFunction', '15M', '{"cn":"鉴权返回用户不存在消息总数","en":"Ausf.UeAuthAnsUserNotFound"}', 'AUSF返回用户不存在消息总数');
INSERT INTO "measure_title" VALUES (3775, 'UDM', 'UDMHC04', 'Ausf.UeAuthAnsContextNotFound', 'false', 'AusfFunction', '15M', '{"cn":"返回上下文不存在消息总数","en":"Ausf.UeAuthAnsContextNotFound"}', 'AUSF返回上下文不存在消息总数');
INSERT INTO "measure_title" VALUES (3776, 'UDM', 'UDMHD01', 'ME.MeanMeLoad', 'false', 'ManagedElement', '15M', '{"cn":"系统平均负荷","en":"ME.MeanMeLoad"}', '
指测量周期中,网元的虚拟机资源负荷的抽样平均值。网元的虚拟机资源负荷可取对网元影响最大的模块的负荷,或取不同模块的负荷的加权平均值,不同厂商设备的计算方法各不相同。');
INSERT INTO "measure_title" VALUES (3777, 'UPF', 'UPFHA01', 'UPF.PfcpSessionEstabReq', 'false', 'UpfFunction', '15M', '{"cn":"PFCP会话建立请求次数","en":"UPF.PfcpSessionEstabReq"}', 'PFCP会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3778, 'UPF', 'UPFHA01', 'UPF.PfcpSessionEstabReq._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的PFCP会话建立请求次数","en":"UPF.PfcpSessionEstabReq._Ns"}', '按照S-NSSAI统计的PFCP会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3779, 'UPF', 'UPFHA01', 'UPF.PfcpSessionEstabReq._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分Dnn的PFCP会话建立请求次数","en":"UPF.PfcpSessionEstabReq._Dnn"}', '按照Dnn统计的PFCP会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3780, 'UPF', 'UPFHA02', 'UPF.PfcpSessionEstabSucc', 'false', 'UpfFunction', '15M', '{"cn":"PFCP会话建立成功次数","en":"UPF.PfcpSessionEstabSucc"}', 'PFCP会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3781, 'UPF', 'UPFHA02', 'UPF.PfcpSessionEstabSucc._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的PFCP会话建立成功次数","en":"UPF.PfcpSessionEstabSucc._Ns"}', '按照S-NSSAI统计的PFCP会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3782, 'UPF', 'UPFHA02', 'UPF.PfcpSessionEstabSucc._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分Dnn的PFCP会话建立成功次数","en":"UPF.PfcpSessionEstabSucc._Dnn"}', '按照Dnn统计的PFCP会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3783, 'UPF', 'UPFHA03', 'UPF.PfcpSessionEstabFail', 'false', 'UpfFunction', '15M', '{"cn":"PFCP会话建立失败次数","en":"UPF.PfcpSessionEstabFail"}', 'PFCP会话建立被拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3784, 'UPF', 'UPFHA03', 'UPF.PfcpSessionEstabFail._Cause', 'true', 'UpfFunction', '15M', '{"cn":"分原因的PFCP会话建立失败次数","en":"UPF.PfcpSessionEstabFail._Cause"}', 'PFCP会话建立被拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3785, 'UPF', 'UPFHA03', 'UPF.PfcpSessionEstabFail._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的PFCP会话建立失败次数","en":"UPF.PfcpSessionEstabFail._Ns"}', '按照S-NSSAI统计PFCP会话建立被拒绝的次数');
INSERT INTO "measure_title" VALUES (3786, 'UPF', 'UPFHA03', 'UPF.PfcpSessionEstabFail._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分Dnn的PFCP会话建立失败次数","en":"UPF.PfcpSessionEstabFail._Dnn"}', '按照Dnn统计PFCP会话建立被拒绝的次数');
INSERT INTO "measure_title" VALUES (3787, 'UPF', 'UPFHA04', 'UPF.PfcpSessionModifyReq', 'false', 'UpfFunction', '15M', '{"cn":"PFCP会话修改请求次数","en":"UPF.PfcpSessionModifyReq"}', 'PFCP会话修改请求次数。');
INSERT INTO "measure_title" VALUES (3788, 'UPF', 'UPFHA04', 'UPF.PfcpSessionModifyReq._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的PFCP会话修改请求次数","en":"UPF.PfcpSessionModifyReq._Ns"}', '按照S-NSSAI统计PFCP会话修改请求次数。');
INSERT INTO "measure_title" VALUES (3789, 'UPF', 'UPFHA04', 'UPF.PfcpSessionModifyReq._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分Dnn的PFCP会话修改请求次数","en":"UPF.PfcpSessionModifyReq._Dnn"}', '按照Dnn统计PFCP会话修改请求次数。');
INSERT INTO "measure_title" VALUES (3790, 'UPF', 'UPFHA05', 'UPF.PfcpSessionModifySucc', 'false', 'UpfFunction', '15M', '{"cn":"PFCP会话修改成功次数","en":"UPF.PfcpSessionModifySucc"}', 'PFCP会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3791, 'UPF', 'UPFHA05', 'UPF.PfcpSessionModifySucc._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的PFCP会话修改成功次数","en":"UPF.PfcpSessionModifySucc._Ns"}', '按照S-NSSAI统计PFCP会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3792, 'UPF', 'UPFHA05', 'UPF.PfcpSessionModifySucc._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分Dnn的PFCP会话修改成功次数","en":"UPF.PfcpSessionModifySucc._Dnn"}', '按照Dnn统计PFCP会话修改成功次数。');
INSERT INTO "measure_title" VALUES (3793, 'UPF', 'UPFHA06', 'UPF.PfcpSessionModifyFail', 'false', 'UpfFunction', '15M', '{"cn":"PFCP会话修改失败次数","en":"UPF.PfcpSessionModifyFail"}', 'PFCP会话修改拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3794, 'UPF', 'UPFHA06', 'UPF.PfcpSessionModifyFail._Cause', 'true', 'UpfFunction', '15M', '{"cn":"分原因的PFCP会话修改失败次数","en":"UPF.PfcpSessionModifyFail._Cause"}', 'PFCP会话修改拒绝的次数并按拒绝原因分类统计。');
INSERT INTO "measure_title" VALUES (3795, 'UPF', 'UPFHA06', 'UPF.PfcpSessionModifyFail._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的PFCP会话修改失败次数","en":"UPF.PfcpSessionModifyFail._Ns"}', '按照S-NSSAI统计PFCP会话修改拒绝的次数。');
INSERT INTO "measure_title" VALUES (3796, 'UPF', 'UPFHA06', 'UPF.PfcpSessionModifyFail._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分Dnn的PFCP会话修改失败次数","en":"UPF.PfcpSessionModifyFail._Dnn"}', '按照Dnn统计PFCP会话修改拒绝的次数。');
INSERT INTO "measure_title" VALUES (3797, 'UPF', 'UPFHB01', 'UPF.MeanQosFlows', 'false', 'UpfFunction', '15M', '{"cn":"平均QoS流数","en":"UPF.MeanQosFlows"}', '一个统计周期内UPF中的平均QoS流数。');
INSERT INTO "measure_title" VALUES (3798, 'UPF', 'UPFHB01', 'UPF.MeanQosFlows._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的平均QoS流数","en":"UPF.MeanQosFlows._Ns"}', '一个统计周期内按照S-NSSAI统计UPF中的平均QoS流数。');
INSERT INTO "measure_title" VALUES (3799, 'UPF', 'UPFHB01', 'UPF.MeanQosFlows._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的平均QoS流数","en":"UPF.MeanQosFlows._Dnn"}', '一个统计周期内按照DNN统计UPF中的平均QoS流数。');
INSERT INTO "measure_title" VALUES (3800, 'UPF', 'UPFHB01', 'UPF.MaxQosFlows', 'false', 'UpfFunction', '15M', '{"cn":"最大QoS流数","en":"UPF.MaxQosFlows"}', '一个统计周期内UPF中的最大QoS流数。');
INSERT INTO "measure_title" VALUES (3801, 'UPF', 'UPFHB01', 'UPF.MaxQosFlows._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的最大QoS流数","en":"UPF.MaxQosFlows._Ns"}', '一个统计周期内按照S-NSSAI统计UPF中的最大QoS流数。');
INSERT INTO "measure_title" VALUES (3802, 'UPF', 'UPFHB01', 'UPF.MaxQosFlows._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的最大QoS流数","en":"UPF.MaxQosFlows._Dnn"}', '一个统计周期内按照DNN统计UPF中的最大QoS流数。');
INSERT INTO "measure_title" VALUES (3803, 'UPF', 'UPFHC01', 'UPF.N3IncPkt', 'false', 'EpRpDynN3Upf', '15M', '{"cn":"N3接口接收GTP包数","en":"UPF.N3IncPkt"}', 'UPF从N3接口接收的GTP包数。其中EpRpDynN3Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3804, 'UPF', 'UPFHC01', 'UPF.N3IncPkt._Ns', 'true', 'EpRpDynN3Upf', '15M', '{"cn":"分切片的N3接口接收GTP包数","en":"UPF.N3IncPkt._Ns"}', 'UPF从N3接口接收的GTP包数。其中EpRpDynN3Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3805, 'UPF', 'UPFHC02', 'UPF.N3OgPkt', 'false', 'EpRpDynN3Upf', '15M', '{"cn":"N3接口发送GTP包数","en":"UPF.N3OgPkt"}', 'UPF从N3接口发送出去的GTP包数其中EpRpDynN3Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3806, 'UPF', 'UPFHC02', 'UPF.N3OgPkt._Ns', 'true', 'EpRpDynN3Upf', '15M', '{"cn":"分切片的N3接口发送GTP包数","en":"UPF.N3OgPkt._Ns"}', 'UPF从N3接口发送出去的GTP包数其中EpRpDynN3Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3807, 'UPF', 'UPFHC03', 'UPF.N3IncOct', 'false', 'EpRpDynN3Upf', '15M', '{"cn":"N3接口接收GTP包字节数","en":"UPF.N3IncOct"}', 'UPF从N3接口接收的GTP包字节数含GTP头其中EpRpDynN3Upf_Global要求按S-NSSAI或UE分别进行统计。');
INSERT INTO "measure_title" VALUES (3808, 'UPF', 'UPFHC03', 'UPF.N3IncOct._Ns', 'true', 'EpRpDynN3Upf', '15M', '{"cn":"分切片的N3接口接收GTP包字节数","en":"UPF.N3IncOct._Ns"}', 'UPF从N3接口接收的GTP包字节数含GTP头其中EpRpDynN3Upf_Global要求按S-NSSAI或UE分别进行统计。');
INSERT INTO "measure_title" VALUES (3809, 'UPF', 'UPFHC04', 'UPF.N3OgOct', 'false', 'EpRpDynN3Upf', '15M', '{"cn":"N3接口发送GTP包字节数","en":"UPF.N3OgOct"}', 'UPF从N3接口发送的GTP包字节数含GTP头其中EpRpDynN3Upf_Global要求按S-NSSAI或UE分别进行统计。');
INSERT INTO "measure_title" VALUES (3810, 'UPF', 'UPFHC04', 'UPF.N3OgOct._Ns', 'true', 'EpRpDynN3Upf', '15M', '{"cn":"分切片的N3接口发送GTP包字节数","en":"UPF.N3OgOct._Ns"}', 'UPF从N3接口发送的GTP包字节数含GTP头其中EpRpDynN3Upf_Global要求按S-NSSAI或UE分别进行统计。');
INSERT INTO "measure_title" VALUES (3811, 'UPF', 'UPFHC05', 'UPF.N3DiscPkt', 'false', 'EpRpDynN3Upf', '15M', '{"cn":"N3接口接收错误GTP包数","en":"UPF.N3DiscPkt"}', 'N3接口因出错丢弃的GTP包个数其中EpRpDynN3Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3812, 'UPF', 'UPFHC05', 'UPF.N3DiscPkt._Ns', 'true', 'EpRpDynN3Upf', '15M', '{"cn":"分切片的N3接口接收错误GTP包数","en":"UPF.N3DiscPkt._Ns"}', 'N3接口因出错丢弃的GTP包个数其中EpRpDynN3Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3813, 'UPF', 'UPFHD01', 'UPF.N9aIncPkt', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9a接口接收GTP包数","en":"UPF.N9aIncPkt"}', 'UPF从左侧N9a接口接收的GTP包数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3814, 'UPF', 'UPFHD01', 'UPF.N9aIncPkt._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9a接口接收GTP包数","en":"UPF.N9aIncPkt._Ns"}', 'UPF从左侧N9a接口接收的GTP包数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3815, 'UPF', 'UPFHD02', 'UPF.N9aOgPkt', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9a接口发送GTP包数","en":"UPF.N9aOgPkt"}', 'UPF从左侧N9a接口发送出去的GTP包数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3816, 'UPF', 'UPFHD02', 'UPF.N9aOgPkt._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9a接口发送GTP包数","en":"UPF.N9aOgPkt._Ns"}', 'UPF从左侧N9a接口发送出去的GTP包数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3817, 'UPF', 'UPFHD03', 'UPF.N9aIncOct', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9a接口接收GTP包字节数","en":"UPF.N9aIncOct"}', 'UPF从左侧N9a接口接收的GTP包字节数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3818, 'UPF', 'UPFHD03', 'UPF.N9aIncOct._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9a接口接收GTP包字节数","en":"UPF.N9aIncOct._Ns"}', 'UPF从左侧N9a接口接收的GTP包字节数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3819, 'UPF', 'UPFHD04', 'UPF.N9aOgOct', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9a接口发送GTP包字节数","en":"UPF.N9aOgOct"}', 'UPF从左侧N9a接口发送的GTP包字节数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3820, 'UPF', 'UPFHD04', 'UPF.N9aOgOct._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9a接口发送GTP包字节数","en":"UPF.N9aOgOct._Ns"}', 'UPF从左侧N9a接口发送的GTP包字节数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3821, 'UPF', 'UPFHD05', 'UPF.N9aDiscPkt', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9a接口接收错误GTP包数","en":"UPF.N9aDiscPkt"}', 'UPF对左侧N9a接口因出错丢弃的GTP包个数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3822, 'UPF', 'UPFHD05', 'UPF.N9aDiscPkt._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9a接口接收错误GTP包数","en":"UPF.N9aDiscPkt._Ns"}', 'UPF对左侧N9a接口因出错丢弃的GTP包个数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3823, 'UPF', 'UPFHD06', 'UPF.N9cIncPkt', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9c接口接收GTP包数","en":"UPF.N9cIncPkt"}', 'UPF从右侧N9c接口接收的GTP包数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3824, 'UPF', 'UPFHD06', 'UPF.N9cIncPkt._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9c接口接收GTP包数","en":"UPF.N9cIncPkt._Ns"}', 'UPF从右侧N9c接口接收的GTP包数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3825, 'UPF', 'UPFHD07', 'UPF.N9cOgPkt', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9c接口发送GTP包数","en":"UPF.N9cOgPkt"}', 'UPF从右侧N9c接口发送出去的GTP包数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3826, 'UPF', 'UPFHD07', 'UPF.N9cOgPkt._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9c接口发送GTP包数","en":"UPF.N9cOgPkt._Ns"}', 'UPF从右侧N9c接口发送出去的GTP包数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3827, 'UPF', 'UPFHD08', 'UPF.N9cIncOct', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9c接口接收GTP包字节数","en":"UPF.N9cIncOct"}', 'UPF从右侧N9c接口接收的GTP包字节数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3828, 'UPF', 'UPFHD08', 'UPF.N9cIncOct._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9c接口接收GTP包字节数","en":"UPF.N9cIncOct._Ns"}', 'UPF从右侧N9c接口接收的GTP包字节数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3829, 'UPF', 'UPFHD09', 'UPF.N9cOgOct', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9c接口发送GTP包字节数","en":"UPF.N9cOgOct"}', 'UPF从右侧N9c接口发送的GTP包字节数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3830, 'UPF', 'UPFHD09', 'UPF.N9cOgOct._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9c接口发送GTP包字节数","en":"UPF.N9cOgOct._Ns"}', 'UPF从右侧N9c接口发送的GTP包字节数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3831, 'UPF', 'UPFHD10', 'UPF.N9cDiscPkt', 'false', 'EpRpDynN9Upf', '15M', '{"cn":"N9c接口接收错误GTP包数","en":"UPF.N9cDiscPkt"}', 'UPF对右侧N9c接口因出错丢弃的GTP包个数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3832, 'UPF', 'UPFHD10', 'UPF.N9cDiscPkt._Ns', 'true', 'EpRpDynN9Upf', '15M', '{"cn":"分切片的N9c接口接收错误GTP包数","en":"UPF.N9cDiscPkt._Ns"}', 'UPF对右侧N9c接口因出错丢弃的GTP包个数其中EpRpDynN9Upf_Global要求按S-NSSAI分别进行统计。');
INSERT INTO "measure_title" VALUES (3833, 'UPF', 'UPFHE01', 'UPF.N6IncPkt', 'false', 'UpfFunction', '15M', '{"cn":"N6接口接收IP包数","en":"UPF.N6IncPkt"}', '统计UPF在N6接口接收到的IP包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3834, 'UPF', 'UPFHE01', 'UPF.N6IncPkt._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口接收IP包数","en":"UPF.N6IncPkt._Dnn"}', '统计UPF在N6接口接收到的IP包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3835, 'UPF', 'UPFHE01', 'UPF.N6IncPktIpv6', 'false', 'UpfFunction', '15M', '{"cn":"N6接口接收IPv6包数","en":"UPF.N6IncPktIpv6"}', '统计UPF在N6接口接收到的IPv6包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3836, 'UPF', 'UPFHE01', 'UPF.N6IncPktIpv6._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口接收IPv6包数","en":"UPF.N6IncPktIpv6._Dnn"}', '统计UPF在N6接口接收到的IPv6包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3837, 'UPF', 'UPFHE02', 'UPF.N6OgPkt', 'false', 'UpfFunction', '15M', '{"cn":"N6接口发送IP包数","en":"UPF.N6OgPkt"}', '统计UPF在N6向发送的IP包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3838, 'UPF', 'UPFHE02', 'UPF.N6OgPkt._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口发送IP包数","en":"UPF.N6OgPkt._Dnn"}', '统计UPF在N6向发送的IP包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3839, 'UPF', 'UPFHE02', 'UPF.N6OgPktIpv6', 'false', 'UpfFunction', '15M', '{"cn":"N6接口发送IPv6包数","en":"UPF.N6OgPktIpv6"}', '统计UPF在N6向发送的IPv6包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3840, 'UPF', 'UPFHE02', 'UPF.N6OgPktIpv6._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口发送IPv6包数","en":"UPF.N6OgPktIpv6._Dnn"}', '统计UPF在N6向发送的IPv6包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3841, 'UPF', 'UPFHE03', 'UPF.N6IncOct', 'false', 'UpfFunction', '15M', '{"cn":"N6接口接收字节数","en":"UPF.N6IncOct"}', '统计UPF在N6接收到的IP包PDU字节数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3842, 'UPF', 'UPFHE03', 'UPF.N6IncOct._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口接收字节数","en":"UPF.N6IncOct._Dnn"}', '统计UPF在N6接收到的IP包PDU字节数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3843, 'UPF', 'UPFHE03', 'UPF.N6IncOctIpv6', 'false', 'UpfFunction', '15M', '{"cn":"N6接口接收的IPv6字节数","en":"UPF.N6IncOctIpv6"}', '统计UPF在N6接收到的IPv6包PDU字节数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3844, 'UPF', 'UPFHE03', 'UPF.N6IncOctIpv6._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口接收的IPv6字节数","en":"UPF.N6IncOctIpv6._Dnn"}', '统计UPF在N6接收到的IPv6包PDU字节数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3845, 'UPF', 'UPFHE04', 'UPF.N6OgOct', 'false', 'UpfFunction', '15M', '{"cn":"N6接口发送字节数","en":"UPF.N6OgOct"}', '统计UPF在N6发送的IP包PDU字节数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3846, 'UPF', 'UPFHE04', 'UPF.N6OgOct._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口发送字节数","en":"UPF.N6OgOct._Dnn"}', '统计UPF在N6发送的IP包PDU字节数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3847, 'UPF', 'UPFHE04', 'UPF.N6OgOctIpv6', 'false', 'UpfFunction', '15M', '{"cn":"N6接口发送的IPv6字节数","en":"UPF.N6OgOctIpv6"}', '统计UPF在N6发送的IPv6包PDU字节数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3848, 'UPF', 'UPFHE04', 'UPF.N6OgOctIpv6._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口发送的IPv6字节数","en":"UPF.N6OgOctIpv6._Dnn"}', '统计UPF在N6发送的IPv6包PDU字节数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3849, 'UPF', 'UPFHE05', 'UPF.N6DiscPkt', 'false', 'UpfFunction', '15M', '{"cn":"N6接口出错丢弃的IP包数","en":"UPF.N6DiscPkt"}', '统计N6口出错丢弃的IP包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3850, 'UPF', 'UPFHE05', 'UPF.N6DiscPkt._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口出错丢弃的IP包数","en":"UPF.N6DiscPkt._Dnn"}', '统计N6口出错丢弃的IP包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3851, 'UPF', 'UPFHE05', 'UPF.N6DiscPktIpv6', 'false', 'UpfFunction', '15M', '{"cn":"N6接口出错丢弃的IPv6包数","en":"UPF.N6DiscPktIpv6"}', '统计N6口出错丢弃的IPv6包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3852, 'UPF', 'UPFHE05', 'UPF.N6DiscPktIpv6._Dnn', 'true', 'UpfFunction', '15M', '{"cn":"分DNN的N6接口出错丢弃的IPv6包数","en":"UPF.N6DiscPktIpv6._Dnn"}', '统计N6口出错丢弃的IPv6包个数并按DNN分别进行统计');
INSERT INTO "measure_title" VALUES (3853, 'UPF', 'UPFHF01', 'ME.MeanMeLoad', 'false', 'ManagedElement', '15M', '{"cn":"系统平均负荷","en":"ME.MeanMeLoad"}', '对物理网元:指测量周期中,网元的硬件资源负荷的抽样平均值。网元的硬件资源负荷可取对网元影响最大的模块的负荷,或取不同模块的负荷的加权平均值,不同厂商设备的计算方法各不相同。
对虚拟网元:指测量周期中,网元的虚拟机资源负荷的抽样平均值。网元的虚拟机资源负荷可取对网元影响最大的模块的负荷,或取不同模块的负荷的加权平均值,不同厂商设备的计算方法各不相同。');
INSERT INTO "measure_title" VALUES (3854, 'UPF', 'UPFHG01', 'UPF.MeanRtDelay._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的平均往返时延","en":"UPF.MeanRtDelay._Ns"}', '基于切片对一个测量周期内所有归属该切片的采样用户获得的时延取平均后得到的往返时延');
INSERT INTO "measure_title" VALUES (3855, 'UPF', 'UPFHG02', 'UPF.MeanUlDelay._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的平均上行时延","en":"UPF.MeanUlDelay._Ns"}', '基于切片对一个测量周期内所有归属该切片的采样用户获得的时延取平均后得到的上行时延');
INSERT INTO "measure_title" VALUES (3856, 'UPF', 'UPFHG03', 'UPF.MeanDlDelay._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的平均下行时延","en":"UPF.MeanDlDelay._Ns"}', '基于切片对一个测量周期内所有归属该切片的采样用户获得的时延取平均后得到的下行时延');
INSERT INTO "measure_title" VALUES (3857, 'UPF', 'UPFHG04', 'UPF.MaxRtDelay._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的最大往返时延","en":"UPF.MaxRtDelay._Ns"}', '基于切片对一个测量周期内所有归属该切片的采样用户获得的时延取平均后得到的最大往返时延');
INSERT INTO "measure_title" VALUES (3858, 'UPF', 'UPFHG05', 'UPF.MaxUlDelay._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的最大上行时延","en":"UPF.MaxUlDelay._Ns"}', '基于切片对一个测量周期内所有归属该切片的采样用户获得的时延取平均后得到的最大上行时延');
INSERT INTO "measure_title" VALUES (3859, 'UPF', 'UPFHG06', 'UPF.MaxDlDelay._Ns', 'true', 'UpfFunction', '15M', '{"cn":"分切片的最大下行时延","en":"UPF.MaxDlDelay._Ns"}', '基于切片对一个测量周期内所有归属该切片的采样用户获得的时延取平均后得到的最大下行时延');
INSERT INTO "measure_title" VALUES (3860, 'UPF', 'UPFHH01', 'UPF.5GLanMaxPduSession', 'false', 'UpfFunction', '15M', '{"cn":"最大的5GLANGroup会话数","en":"UPF.5GLanMaxPduSession"}', '一个统计周期内UPF+中的最大5G LAN GROUP会话数目');
INSERT INTO "measure_title" VALUES (3861, 'UPF', 'UPFHH01', 'UPF.5GLanMaxPduSession._5GLanGroup', 'true', 'UpfFunction', '15M', '{"cn":"指定5GLANGroup的最大的5GLANGroup会话数","en":"UPF.5GLanMaxPduSession._5GLanGroup"}', '一个统计周期内UPF+中指定5G LAN Group的最大5G LAN GROUP会话数目');
INSERT INTO "measure_title" VALUES (3862, 'UPF', 'UPFHH02', 'UPF.5GLanUeTransPkt', 'false', 'UpfFunction', '15M', '{"cn":"5GLANGroupUE互访报文包数","en":"UPF.5GLanUeTransPkt"}', '一个统计周期内UPF+中的5G LAN GROUP UE转发给其他UE的报文报数');
INSERT INTO "measure_title" VALUES (3863, 'UPF', 'UPFHH02', 'UPF.5GLanUeTransPkt._5GLanGroup', 'true', 'UpfFunction', '15M', '{"cn":"指定5GLANGroup的UE互访报文包数","en":"UPF.5GLanUeTransPkt._5GLanGroup"}', '一个统计周期内UPF+中指定5G LAN Group的UE转发给其他UE的报文报数');
INSERT INTO "measure_title" VALUES (3864, 'UPF', 'UPFHH03', 'UPF.5GLanUeTransOct', 'false', 'UpfFunction', '15M', '{"cn":"5GLANGroupUE互访报文字节数","en":"UPF.5GLanUeTransOct"}', '一个统计周期内UPF+中的5G LAN GROUP UE转发给其他UE的报文字节数');
INSERT INTO "measure_title" VALUES (3865, 'UPF', 'UPFHH03', 'UPF.5GLanUeTransOct._5GLanGroup', 'true', 'UpfFunction', '15M', '{"cn":"指定5GLANGroup的UE互访报文字节数","en":"UPF.5GLanUeTransOct._5GLanGroup"}', '一个统计周期内UPF+中指定5G LAN Group的UE转发给其他UE的报文字节数');
INSERT INTO "measure_title" VALUES (3866, 'UPF', 'UPFHI01', 'AMF.RegSub', 'false', 'AmfFunction', '15M', '{"cn":"AMF注册态用户数","en":"AMF.RegSub"}', '当前所有注册在AMF上的用户');
INSERT INTO "measure_title" VALUES (3867, 'UPF', 'UPFHI01', 'AMF.RegSub._Ns', 'true', 'AmfFunction', '15M', '{"cn":"分切片的AMF注册用户数","en":"AMF.RegSub._Ns"}', 'AMF支持的允许UE使用的S-NSSAI统计每个网络切片在AMF上的用户数。以AMF下发给UE的allowed S-NSSAI中AMF支持的S-NSSAI的个数为准。');
INSERT INTO "measure_title" VALUES (3868, 'UPF', 'UPFHI02', 'AMF.PagAtt', 'false', 'AmfFunction', '15M', '{"cn":"寻呼请求次数","en":"AMF.PagAtt"}', 'AMF的寻呼请求次数。');
INSERT INTO "measure_title" VALUES (3869, 'UPF', 'UPFHI03', 'AMF.FirstPagingSucc', 'false', 'AmfFunction', '15M', '{"cn":"寻呼响应次数","en":"AMF.FirstPagingSucc"}', '寻呼成功次数。');
INSERT INTO "measure_title" VALUES (3870, 'UPF', 'UPFHI04', 'AMF.GnbNum', 'false', 'AmfFunction', '15M', '{"cn":"AMF挂接5G基站数","en":"AMF.GnbNum"}', '统计周期结束点时刻挂接在AMF下的5G基站数量');
INSERT INTO "measure_title" VALUES (3871, 'UPF', 'UPFHI05', 'AMF.AttInitReg', 'false', 'AmfFunction', '15M', '{"cn":"初始注册请求次数","en":"AMF.AttInitReg"}', '初始注册请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3872, 'UPF', 'UPFHI06', 'AMF.AttInitReg._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册请求次数","en":"AMF.AttInitReg._Ta"}', '初始注册请求次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3873, 'UPF', 'UPFHI07', 'AMF.SuccInitReg', 'false', 'AmfFunction', '15M', '{"cn":"初始注册成功次数","en":"AMF.SuccInitReg"}', '初始注册完成次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3874, 'UPF', 'UPFHI08', 'AMF.SuccInitReg._Ta', 'true', 'AmfFunction', '15M', '{"cn":"分跟踪区的初始注册成功次数","en":"AMF.SuccInitReg._Ta"}', '初始注册完成次数并分TA进行统计。');
INSERT INTO "measure_title" VALUES (3875, 'UPF', 'UPFHI09', 'AMF.FailedInitReg', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数","en":"AMF.FailedInitReg"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3876, 'UPF', 'UPFHI10', 'AMF.FailedInitReg._Cause', 'true', 'AmfFunction', '15M', '{"cn":"分原因值的初始注册失败次数","en":"AMF.FailedInitReg._Cause"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3877, 'UPF', 'UPFHI11', 'AMF.FailedInitReg.3', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_非法用户","en":"AMF.FailedInitReg.3"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3878, 'UPF', 'UPFHI12', 'AMF.FailedInitReg.5', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_PEI不允许","en":"AMF.FailedInitReg.5"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3879, 'UPF', 'UPFHI13', 'AMF.FailedInitReg.6', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_非法设备","en":"AMF.FailedInitReg.6"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3880, 'UPF', 'UPFHI14', 'AMF.FailedInitReg.7', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_5GS服务不允许","en":"AMF.FailedInitReg.7"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3881, 'UPF', 'UPFHI15', 'AMF.FailedInitReg.7.User', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_5GS服务不允许_用户原因","en":"AMF.FailedInitReg.7.User"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3882, 'UPF', 'UPFHI16', 'AMF.FailedInitReg.15', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_跟踪区内无合适小区","en":"AMF.FailedInitReg.15"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3883, 'UPF', 'UPFHI17', 'AMF.FailedInitReg.15.User', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_跟踪区内无合适小区_用户原因","en":"AMF.FailedInitReg.15.User"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3884, 'UPF', 'UPFHI18', 'AMF.FailedInitReg.12', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_跟踪区不允许","en":"AMF.FailedInitReg.12"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3885, 'UPF', 'UPFHI19', 'AMF.FailedInitReg.13', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_漫游跟踪区禁止接入","en":"AMF.FailedInitReg.13"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3886, 'UPF', 'UPFHI20', 'AMF.FailedInitReg.27', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_N1模式不允许","en":"AMF.FailedInitReg.27"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3887, 'UPF', 'UPFHI21', 'AMF.FailedInitReg.62', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_无可用网络切片","en":"AMF.FailedInitReg.62"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3888, 'UPF', 'UPFHI22', 'AMF.FailedInitReg.11', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_PLMN不允许","en":"AMF.FailedInitReg.11"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3889, 'UPF', 'UPFHI23', 'AMF.FailedInitReg.111', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_协议错误","en":"AMF.FailedInitReg.111"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3890, 'UPF', 'UPFHI24', 'AMF.FailedInitReg.111.User', 'false', 'AmfFunction', '15M', '{"cn":"初始注册失败次数_协议错误_用户原因","en":"AMF.FailedInitReg.111.User"}', '初始注册失败次数,分原因进行分类统计;
其中原因值3、5、6、7.User、15.User、27、9.User、11、12、13、62、111.User视为用户原因。');
INSERT INTO "measure_title" VALUES (3891, 'UPF', 'UPFHJ01', 'SMF.AttCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立请求次数","en":"SMF.AttCreatePduSession"}', 'UE发起的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3892, 'UPF', 'UPFHJ02', 'SMF.SuccCreatePduSession', 'false', 'SmfFunction', '15M', '{"cn":"PDU会话建立成功次数","en":"SMF.SuccCreatePduSession"}', 'UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3893, 'UPF', 'UPFHJ03', 'SMF.MeanPduSession', 'false', 'SmfFunction', '15M', '{"cn":"平均PDU会话数","en":"SMF.MeanPduSession"}', '一个统计周期内SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3894, 'UPF', 'UPFHJ03', 'SMF.MeanPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的平均PDU会话数","en":"SMF.MeanPduSession._Ns"}', '一个统计周期内按照S-NSSAI统计SMF中的平均PDU会话数。');
INSERT INTO "measure_title" VALUES (3895, 'UPF', 'UPFHJ04', 'SMF.MaxPduSession', 'false', 'SmfFunction', '15M', '{"cn":"最大PDU会话数","en":"SMF.MaxPduSession"}', '一个统计周期内SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3896, 'UPF', 'UPFHJ04', 'SMF.MaxPduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的最大PDU会话数","en":"SMF.MaxPduSession._Ns"}', '一个统计周期内按照S-NSSAI统计SMF中的最大PDU会话数。');
INSERT INTO "measure_title" VALUES (3897, 'UPF', 'UPFHJ05', 'SMF.MeanQf', 'false', 'SmfFunction', '15M', '{"cn":"平均Qos流数","en":"SMF.MeanQf"}', '一个统计周期内SMF中的平均Qos流数。');
INSERT INTO "measure_title" VALUES (3898, 'UPF', 'UPFHJ05', 'SMF.MeanQf._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的平均Qos流数","en":"SMF.MeanQf._Ns"}', '一个统计周期内按照S-NSSAI统计SMF中的平均QoS流数。');
INSERT INTO "measure_title" VALUES (3899, 'UPF', 'UPFHJ06', 'SMF.MaxQf', 'false', 'SmfFunction', '15M', '{"cn":"最大Qos流数","en":"SMF.MaxQf"}', '一个统计周期内SMF中的最大Qos流数。');
INSERT INTO "measure_title" VALUES (3900, 'UPF', 'UPFHJ06', 'SMF.MaxQf._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的最大Qos流数","en":"SMF.MaxQf._Ns"}', '一个统计周期内按照S-NSSAI统计SMF中的最大QoS流数。');
INSERT INTO "measure_title" VALUES (3901, 'UPF', 'UPFHJ07', 'SMF.AttCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的PDU会话建立请求次数","en":"SMF.AttCreatePduSession._Ns"}', '按照S-NSSAI统计UE发起的PDU会话建立请求次数。');
INSERT INTO "measure_title" VALUES (3902, 'UPF', 'UPFHJ07', 'SMF.SuccCreatePduSession._Ns', 'true', 'SmfFunction', '15M', '{"cn":"分切片的PDU会话建立成功次数","en":"SMF.SuccCreatePduSession._Ns"}', '按照S-NSSAI统计UE发起的PDU会话建立成功次数。');
INSERT INTO "measure_title" VALUES (3903, 'UPF', 'UPFHK01', 'UDR.5gActSub', 'false', 'UdrFunction', '15M', '{"cn":"5G活动用户数","en":"UDR.5gActSub"}', '统计UDR存储的有5G位置信息的MSISDN用户数最新值');
INSERT INTO "measure_title" VALUES (3904, 'UPF', 'UPFHK02', 'UDR.FileSyncReq', 'false', 'UdrFunction', '15M', '{"cn":"文件同步请求次数","en":"UDR.FileSyncReq"}', '应急UDR和核心侧UDR文件同步请求次数');
INSERT INTO "measure_title" VALUES (3905, 'UPF', 'UPFHK03', 'UDR.FileSyncReqSucc', 'false', 'UdrFunction', '15M', '{"cn":"文件同步成功次数","en":"UDR.FileSyncReqSucc"}', '应急UDR和核心侧UDR文件同步请求成功次数');
INSERT INTO "measure_title" VALUES (3906, 'UPF', 'UPFHK04', 'UDR.InstruSyncReq', 'false', 'UdrFunction', '15M', '{"cn":"指令同步请求次数","en":"UDR.InstruSyncReq"}', '应急UDR和核心侧UDR指令同步请求次数');
INSERT INTO "measure_title" VALUES (3907, 'UPF', 'UPFHK05', 'UDR.InstruSyncReqSucc', 'false', 'UdrFunction', '15M', '{"cn":"指令同步成功次数","en":"UDR.InstruSyncReqSucc"}', '应急UDR和核心侧UDR指令同步请求成功次数');
INSERT INTO "measure_title" VALUES (3908, 'UPF', 'UPFHK06', 'UDR.SynSub', 'false', 'UdrFunction', '15M', '{"cn":"应急UDR同步的用户总数","en":"UDR.SynSub"}', '统计应急UDR从核心侧UDR同步的用户数');
INSERT INTO "measure_title" VALUES (3909, 'UPF', 'UPFHK07', 'UDR.SynSubSucc', 'false', 'UdrFunction', '15M', '{"cn":"应急UDR同步成功的用户数","en":"UDR.SynSubSucc"}', '统计应急UDR从核心侧UDR同步成功的用户数');
INSERT INTO "measure_title" VALUES (3910, 'UPF', 'UPFHL01', 'Ausf.UeAuthReq', 'false', 'AusfFunction', '15M', '{"cn":"鉴权请求次数","en":"Ausf.UeAuthReq"}', 'AUSF收到的鉴权请求次数');
INSERT INTO "measure_title" VALUES (3911, 'UPF', 'UPFHL02', 'Ausf.UeAuthAnsSucc', 'false', 'AusfFunction', '15M', '{"cn":"鉴权成功次数","en":"Ausf.UeAuthAnsSucc"}', 'AUSF返回鉴权成功响应次数');

View File

@@ -0,0 +1,61 @@
-- ----------------------------
-- Table structure for mml_command
-- ----------------------------
DROP TABLE IF EXISTS "mml_command";
CREATE TABLE "mml_command" (
"id" integer NOT NULL,
"ne_type" text(16),
"category" text(32),
"cat_display" text(64),
"operation" text(10),
"object" text(16),
"mml_display" text(64),
"param_json" text,
"status" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table mml_command
-- ----------------------------
CREATE INDEX "id"
ON "mml_command" (
"id" ASC
);
-- ----------------------------
-- Records of mml_command
-- ----------------------------
INSERT INTO "mml_command" VALUES (1593, 'OMC', 'neManagement', 'Network Element Management', 'lst', 'neinfo', 'List NE Information', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"},{"alias":"rm_uid","apostr":"true","comment":"","display":"Resource management UID","filter":"","name":"rmuid","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1594, 'OMC', 'neManagement', 'Network Element Management', 'lst', 'memap', 'List Managed Element Map', '[{"alias":"rm_uid","apostr":"true","comment":"","display":"Resource management UID","filter":"","name":"rmuid","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1595, 'OMC', 'neManagement', 'Network Element Management', 'add', 'neinfo', 'Add Network Element', '[{"alias":"ne_type","apostr":"false","comment":"","display":"NE type","filter":"","loc":"false","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"false","comment":"","display":"NE ID","filter":"","loc":"false","name":"neid","optional":"false","type":"string"},{"alias":"rm_uid","apostr":"false","comment":"","display":"Resource management UID","filter":"","loc":"false","name":"rmuid","optional":"false","type":"string"},{"alias":"ip","apostr":"false","comment":"","display":"IP address","filter":"","loc":"false","name":"ip","optional":"false","type":"string"},{"alias":"port","apostr":"false","comment":"","display":"Port","filter":"","loc":"false","name":"port","optional":"false","type":"string"},{"alias":"ne_name","apostr":"false","comment":"","display":"NE name","filter":"","loc":"false","name":"nename","optional":"false","type":"string"},{"alias":"pv_flag","apostr":"false","comment":"","display":"PV flag","filter":"","loc":"false","name":"pvflag","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1596, 'OMC', 'neManagement', 'Network Element Management', 'mod', 'neinfo', 'Modify Network Element', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"false","type":"string"},{"alias":"rm_uid","apostr":"false","comment":"","display":"Resource management UID","filter":"","loc":"false","name":"rmuid","optional":"true","type":"string"},{"alias":"ip","apostr":"false","comment":"","display":"IP address","filter":"","loc":"false","name":"ip","optional":"true","type":"string"},{"alias":"port","apostr":"false","comment":"","display":"Port","filter":"","loc":"false","name":"port","optional":"true","type":"string"},{"alias":"ne_name","apostr":"false","comment":"","display":"NE name","filter":"","loc":"false","name":"nename","optional":"true","type":"string"},{"alias":"pv_flag","apostr":"false","comment":"","display":"PV flag","filter":"","loc":"false","name":"pvflag","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1597, 'OMC', 'neManagement', 'Network Element Management', 'del', 'neinfo', 'Delete Network Element', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1598, 'OMC', 'neConfigManagement', 'NE Config Parameter Management', 'dsp', 'neconfig', 'Display NE Config Parameter', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE Type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"param_display","apostr":"true","comment":"","display":"Parameters Display","filter":"","loc":"true","name":"paramDisplay","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1599, 'OMC', 'faultManagement', 'Fault Management', 'dsp', 'alarm', 'Display Alarm Information', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE UID","filter":"","loc":"true","name":"neid","optional":"true","type":"string"},{"alias":"ne_name","apostr":"true","comment":"","display":"NE name","filter":"","name":"nename","optional":"true","type":"string"},{"alias":"alarm_code","apostr":"true","comment":"","display":"Alarm code","filter":"","name":"alarmcode","optional":"true","type":"int"},{"alias":"orig_severity","apostr":"true","comment":"","display":"Original severity","filter":"{\"Critical\":\"Critical\",\"Major\":\"Major\",\"Minor\":\"Minor\",\"Warning\":\"Warning\",\"Event\":\"Event\"}","name":"origseverity","optional":"true","type":"enum"},{"alias":"pv_flag","apostr":"true","comment":"","display":"PV flag","filter":"","name":"pvflag","optional":"true","type":"string"},{"alias":"event_time\u003e","apostr":"true","comment":"","display":"Alarm event start time","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"event_time\u003c","apostr":"true","comment":"","display":"Alarm event end time","filter":"","name":"endtime","optional":"true","type":"string"},{"alias":"alarm_type","apostr":"true","comment":"","display":"Alarm type","filter":"{\"CommunicationAlarm\":\"CommunicationAlarm\",\"EquipmentAlarm\":\"EquipmentAlarm\",\"ProcessingFailure\":\"ProcessingFailure\",\"EnvironmentalAlarm\":\"EnvironmentalAlarm\",\"QualityOfServiceAlarm\":\"QualityOfServiceAlarm\"}","name":"alarmtype","optional":"true","type":"enum"},{"alias":"alarm_status","apostr":"true","comment":"","display":"Alarm status","filter":"","name":"alarmstatus","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_command" VALUES (1600, 'OMC', 'systemCommand', 'Linux System Command', 'run', 'shell', 'Run Shell Command', '[{"alias":"cmd","apostr":"true","comment":"","display":"Shell command","filter":"","loc":"false","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1601, 'OMC', 'licenseManagement', 'License Management', 'dsp', 'licenseinfo', 'Display NE License Information', '[{"alias":"neType","apostr":"false","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"neId","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1602, 'OMC', 'licenseManagement', 'License Management', 'lst', 'license', 'List NE License Information', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1603, 'OMC', 'licenseManagement', 'License Management', 'dep', 'license', 'Deployment NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"Source NE type","filter":"","name":"srcnetype","optional":"false","type":"string"},{"alias":"ne_id","comment":"","display":"Source NE ID","filter":"","name":"srcneid","optional":"false","type":"string"},{"alias":"ne_type","apostr":"false","comment":"","display":"Destination NE type","filter":"","name":"dstnetype","optional":"false","type":"string"},{"alias":"ne_id","comment":"","display":"Destination NE ID","filter":"","name":"dstneid","optional":"false","type":"string"},{"alias":"dep_number","comment":"","display":"Deployment number","filter":"","name":"number","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1604, 'OMC', 'licenseManagement', 'License Management', 'rel', 'license', 'Batch Release NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"true","type":"string"},{"alias":"capcity","apostr":"false","comment":"","display":"Release number","filter":"","loc":"false","name":"capcity","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1605, 'OMC', 'licenseManagement', 'License Management', 'ins', 'license', 'Install NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"false","type":"string"},{"alias":"capcity","comment":"","display":"Install number","filter":"","loc":"false","name":"capcity","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1606, 'OMC', 'licenseManagement', 'License Management', 'adj', 'license', 'Adjustment NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"true","type":"string"},{"alias":"number","comment":"","display":"Adjustment number","filter":"","loc":"false","name":"number","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1607, 'OMC', 'licenseManagement', 'License Management', 'exp', 'license', 'Export NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1608, 'OMC', 'licenseManagement', 'License Management', 'uni', 'license', 'Uninstall NE License', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1609, 'OMC', 'licenseManagement', 'License Management', 'dsp', 'nelink', 'Display NE Interface Link Status', '[{"alias":"ne_type","apostr":"false","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"},{"alias":"interface","comment":"","display":"Interface","filter":"","name":"interface","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1610, 'OMC', 'nrmManagement', 'NBI Resources Management', 'dsp', 'nbicm', 'Display NBI Resources Management', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"},{"alias":"rm_uid","apostr":"true","comment":"","display":"Resource management UID","filter":"","name":"rmuid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1611, 'OMC', 'neVersionManagement', 'NE Version Management', 'upg', 'neversion', 'Upgrade NE Software Version', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"false","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"false","type":"string"},{"alias":"version","apostr":"true","comment":"","display":"Version","filter":"","loc":"true","name":"version","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_command" VALUES (1612, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'lst', 'measuretask', 'List Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"true","type":"string"},{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"granul_option","apostr":"true","comment":"","display":"Time granularity","filter":"","name":"granuloption","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1613, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'add', 'measuretask', 'Add Performance Measure Task', '[{"alias":"ne_type","apostr":"false","comment":"","display":"NE type","filter":"","loc":"false","name":"netype","optional":"false","type":"string"},{"alias":"ne_ids","apostr":"false","comment":"","display":"NE ID set","filter":"","loc":"false","name":"neids","optional":"false","type":"array"},{"alias":"granul_option","apostr":"false","comment":"","display":"Granularity option","filter":"","loc":"false","name":"granuloption","optional":"false","type":"string"},{"alias":"kpi_set","apostr":"false","comment":"","display":"KPI set","filter":"","loc":"false","name":"kpiset","optional":"false","type":"json"},{"alias":"start_time","apostr":"false","comment":"","display":"Measure task start time","filter":"","loc":"false","name":"starttime","optional":"false","type":"string"},{"alias":"end_time","apostr":"false","comment":"","display":"Measure task end time","filter":"","loc":"false","name":"endtime","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1614, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'mod', 'measuretask', 'Modify Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"false","type":"string"},{"alias":"kpi_set","apostr":"false","comment":"","display":"KPI set","filter":"","loc":"false","name":"kpiset","optional":"true","type":"json"},{"alias":"start_time","apostr":"false","comment":"","display":"Measure task start time","filter":"","loc":"false","name":"starttime","optional":"true","type":"string"},{"alias":"end_time","apostr":"false","comment":"","display":"Measure task end time","filter":"","loc":"false","name":"endtime","optional":"true","type":"string"},{"alias":"granul_option","apostr":"false","comment":"","display":"granularity option","filter":"","loc":"false","name":"granuloption","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1615, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'del', 'measuretask', 'Delete Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1616, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'act', 'measuretask', 'Active Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1617, 'OMC', 'pmTaskManagement', 'Performance Measure Task Management', 'dea', 'measuretask', 'Deactive Performance Measure Task', '[{"alias":"id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1618, 'OMC', 'pmDataManagement', 'Performance Data Management', 'lst', 'measuredata', 'List Performance Data', '[{"alias":"task_id","apostr":"false","comment":"","display":"Task ID","filter":"","loc":"true","name":"id","optional":"true","type":"string"},{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"kpi_id","apostr":"true","comment":"","display":"KPI ID","filter":"","loc":"true","name":"kpiid","optional":"true","type":"string"},{"alias":"start_time\u003e","apostr":"false","comment":"","display":"Measure period start time(\u003e=)","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"start_time\u003c","apostr":"false","comment":"","display":"Measure period start time(\u003c=)","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1619, 'OMC', 'logManagement', 'Log Management', 'lst', 'systemlog', 'List System Log', '[{"alias":"process_type","apostr":"true","comment":"","display":"Process type","filter":"","loc":"true","name":"processtype","optional":"true","type":"string"},{"alias":"log_time\u003e","apostr":"true","comment":"","display":"Log time more than","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"log_time\u003c","apostr":"true","comment":"","display":"Log time less than","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1620, 'OMC', 'logManagement', 'Log Management', 'lst', 'operationlog', 'List Operation Log', '[{"alias":"account_name","apostr":"true","comment":"","display":"Account ID","filter":"","loc":"true","name":"accountid","optional":"true","type":"string"},{"alias":"log_time\u003e","apostr":"true","comment":"","display":"Log time more than","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"log_time\u003c","apostr":"true","comment":"","display":"Log Time Less Than","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1621, 'OMC', 'logManagement', 'Log Management', 'lst', 'securitylog', 'List Security Log', '[{"alias":"account_name","apostr":"true","comment":"","display":"Account ID","filter":"","loc":"true","name":"accountid","optional":"true","type":"string"},{"alias":"op_time\u003e","apostr":"true","comment":"","display":"Log time more than","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"op_time\u003c","apostr":"true","comment":"","display":"Log time less than","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1622, 'OMC', 'logManagement', 'Log Management', 'lst', 'alarmlog', 'List Alarm Log', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"log_time\u003e","apostr":"true","comment":"","display":"Log time(\u003e=)","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"log_time\u003c","apostr":"true","comment":"","display":"Log time less than","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1623, 'OMC', 'logManagement', 'Log Management', 'lst', 'eventlog', 'List NE Event Log', '[{"alias":"ne_type","apostr":"true","comment":"","display":"NE type","filter":"","loc":"true","name":"netype","optional":"true","type":"string"},{"alias":"ne_id","apostr":"true","comment":"","display":"NE ID","filter":"","loc":"true","name":"neid","optional":"true","type":"string"},{"alias":"log_time\u003e","apostr":"true","comment":"","display":"Log time(\u003e=)","filter":"","name":"starttime","optional":"true","type":"string"},{"alias":"log_time\u003c","apostr":"true","comment":"","display":"Log time(\u003c=)","filter":"","name":"endtime","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1624, 'OMC', 'mmlManagement', 'MML Management', 'lst', 'mmlcmd', 'List MML Command', '[{"alias":"ne_type","apostr":"true","comment":"","display":"Category","filter":"","name":"category","optional":"true","type":"string"},{"alias":"operation","apostr":"true","comment":"","display":"Operation","filter":"","name":"operation","optional":"true","type":"string"},{"alias":"object","apostr":"true","comment":"","display":"Object","filter":"","name":"object","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_command" VALUES (1625, 'OMC', 'systemManagement', 'System Management', 'dsp', 'sysinfo', 'Display NE System Information', '[{"alias":"neType","apostr":"false","comment":"","display":"NE type","filter":"","name":"netype","optional":"true","type":"string"},{"alias":"neId","comment":"","display":"NE ID","filter":"","name":"neid","optional":"true","type":"string"}]', 'Active');

View File

@@ -0,0 +1,42 @@
-- ----------------------------
-- Table structure for mml_subscriber
-- ----------------------------
DROP TABLE IF EXISTS "mml_subscriber";
CREATE TABLE "mml_subscriber" (
"id" integer NOT NULL,
"ne_type" text(16),
"category" text(32),
"cat_display" text(64),
"operation" text(10),
"object" text(16),
"mml_display" text(128),
"param_json" text,
"status" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of mml_subscriber
-- ----------------------------
INSERT INTO "mml_subscriber" VALUES (590, 'UDM', 'authdataManagement', 'Authentication Data Management', 'dsp', 'authdat', 'Display Auth Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (591, 'UDM', 'authdataManagement', 'Authentication Data Management', 'add', 'authdat', 'Add Auth Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"},{"comment":"","display":"KI","filter":"","name":"ki","optional":"false","type":"string"},{"comment":"","display":"AMF","filter":"","name":"amf","optional":"false","type":"string"},{"comment":"","display":"Algo Index","filter":"0~15","name":"algo","optional":"false","type":"int"},{"comment":"","display":"OPC","filter":"","name":"opc","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (592, 'UDM', 'authdataManagement', 'Authentication Data Management', 'del', 'authdat', 'Delete Auth Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (593, 'UDM', 'authdataManagement', 'Authentication Data Management', 'baa', 'authdat', 'Batch Add Auth Data', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Auth Data Number","filter":"","name":"sub_num","optional":"false","type":"int"},{"comment":"","display":"KI","filter":"","name":"ki","optional":"false","type":"string"},{"comment":"","display":"AMF","filter":"","name":"amf","optional":"false","type":"string"},{"comment":"","display":"Algo Index","filter":"0~15","name":"algo","optional":"false","type":"int"},{"comment":"","display":"OPC","filter":"","name":"opc","optional":"true","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (594, 'UDM', 'authdataManagement', 'Authentication Data Management', 'bde', 'authdat', 'Batch Delete Auth Data', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Auth Data Number","filter":"","name":"sub_num","optional":"false","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (595, 'UDM', 'authdataManagement', 'Authentication Data Management', 'import', 'authdat', 'Import Auth Data From File', '[{"comment":"","display":"Path File","filter":".txt","name":"path","optional":"false","type":"file"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (596, 'UDM', 'authdataManagement', 'Authentication Data Management', 'export', 'authdat', 'Export Auth Data to File', '[{"comment":"","display":"Path File","filter":"","name":"path","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_subscriber" VALUES (597, 'UDM', 'subscriberManagement', 'Subcriber Management', 'dsp', 'udmuser', 'Display UDM Subscriber', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (598, 'UDM', 'subscriberManagement', 'Subcriber Management', 'add', 'udmuser', 'Add UDM Subscriber', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"},{"comment":"","display":"MSISDN","filter":"","name":"msisdn","optional":"false","type":"string"},{"comment":"","display":"5G UE AMBR","filter":"","name":"ambr","optional":"true","type":"string"},{"comment":"","display":"5G SNSSAIs","filter":"","name":"nssai","optional":"true","type":"string"},{"comment":"","display":"5G Forbidden Areas","filter":"","name":"arfb","optional":"true","type":"string"},{"comment":"","display":"5G Service Area Restriction","filter":"","name":"sar","optional":"true","type":"string"},{"comment":"","display":"RAT Type","filter":"","name":"rat","optional":"true","type":"string"},{"comment":"","display":"Core Network","filter":"","name":"cn","optional":"true","type":"string"},{"comment":"","display":"5G SMF Selection Data","filter":"","name":"smf_sel","optional":"true","type":"string"},{"comment":"","display":"5G SM Data","filter":"","name":"sm_data","optional":"false","type":"string"},{"comment":"Specify mobile phone static IP address, and ''-'' indicates the use of dynamic IP address","display":"4G Static IP","filter":"","name":"static_ip","optional":"true","type":"string"},{"comment":"","display":"4G Context ID","filter":"","name":"context_id","optional":"true","type":"int"},{"comment":"","display":"4G APN Context","filter":"","name":"apn_context","optional":"true","type":"int"},{"comment":"","display":"4G EPS User Template Name","filter":"","name":"epstpl","optional":"true","type":"string"},{"comment":"","display":"4G EPS Flag","filter":"{\"0\":\"Disable\", \"1\":\"Enable\"}","name":"eps_flag","optional":"true","type":"enum"},{"comment":"","display":"4G EPS ODB","filter":"","name":"eps_odb","optional":"true","type":"int"},{"comment":"","display":"4G HPLMN ODB","filter":"","name":"hplmn_odb","optional":"true","type":"int"},{"comment":"","display":"4G Access Restriction Data","filter":"","name":"ard","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (599, 'UDM', 'subscriberManagement', 'Subcriber Management', 'del', 'udmuser', 'Delete Subscriber Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (600, 'UDM', 'subscriberManagement', 'Subcriber Management', 'mod', 'udmuser', 'Modify Subscriber Data', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"},{"comment":"","display":"MSISDN","filter":"","name":"msisdn","optional":"true","type":"string"},{"comment":"","display":"5G UE AMBR","filter":"","name":"ambr","optional":"true","type":"string"},{"comment":"","display":"5G SNSSAIs","filter":"","name":"nssai","optional":"true","type":"string"},{"comment":"","display":"5G Forbidden Areas","filter":"","name":"arfb","optional":"true","type":"string"},{"comment":"","display":"5G Service Area Restriction","filter":"","name":"sar","optional":"true","type":"string"},{"comment":"","display":"RAT Type","filter":"","name":"rat","optional":"true","type":"string"},{"comment":"","display":"Core Network","filter":"","name":"cn","optional":"true","type":"string"},{"comment":"","display":"5G SMF Selection Data","filter":"","name":"smf_sel","optional":"true","type":"string"},{"comment":"","display":"5G SM Data","filter":"","name":"sm_data","optional":"true","type":"string"},{"comment":"Specify mobile phone static IP address, and ''-'' indicates the use of dynamic IP address","display":"4G Static IP","filter":"","name":"static_ip","optional":"true","type":"string"},{"comment":"","display":"4G Context ID","filter":"","name":"context_id","optional":"true","type":"int"},{"comment":"","display":"4G APN Context","filter":"","name":"apn_context","optional":"true","type":"int"},{"comment":"","display":"4G EPS User Template Name","filter":"","name":"epstpl","optional":"true","type":"string"},{"comment":"","display":"4G EPS Flag","filter":"{\"0\":\"Disable\", \"1\":\"Enable\"}","name":"eps_flag","optional":"true","type":"enum"},{"comment":"","display":"4G EPS ODB","filter":"","name":"eps_odb","optional":"true","type":"int"},{"comment":"","display":"4G HPLMN ODB","filter":"","name":"hplmn_odb","optional":"true","type":"int"},{"comment":"","display":"4G Access Restriction Data","filter":"","name":"ard","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (601, 'UDM', 'subscriberManagement', 'Subcriber Management', 'baa', 'udmuser', 'Batch Add UDM Subscriber', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Starting MSISDN","filter":"","name":"start_msisdn","optional":"false","type":"string"},{"comment":"","display":"Subscriber Number","filter":"","name":"sub_num","optional":"false","type":"int"},{"comment":"","display":"5G UE AMBR","filter":"","name":"ambr","optional":"true","type":"string"},{"comment":"","display":"5G SNSSAIs","filter":"","name":"nssai","optional":"true","type":"string"},{"comment":"","display":"5G Forbidden Areas","filter":"","name":"arfb","optional":"true","type":"string"},{"comment":"","display":"5G Service Area Restriction","filter":"","name":"sar","optional":"true","type":"string"},{"comment":"","display":"RAT Type","filter":"","name":"rat","optional":"true","type":"string"},{"comment":"","display":"Core Network","filter":"","name":"cn","optional":"true","type":"string"},{"comment":"","display":"5G SMF Selection Data","filter":"","name":"smf_sel","optional":"true","type":"string"},{"comment":"","display":"5G SM Data","filter":"","name":"sm_data","optional":"false","type":"string"},{"comment":"Specify mobile phone static IP address, and ''-'' indicates the use of dynamic IP address","display":"4G Static IP","filter":"","name":"static_ip","optional":"true","type":"string"},{"comment":"","display":"4G Context ID","filter":"","name":"context_id","optional":"true","type":"int"},{"comment":"","display":"4G APN Context","filter":"","name":"apn_context","optional":"true","type":"int"},{"comment":"","display":"4G EPS User Template Name","filter":"","name":"epstpl","optional":"true","type":"string"},{"comment":"","display":"4G EPS Flag","filter":"{\"0\":\"Disable\", \"1\":\"Enable\"}","name":"eps_flag","optional":"true","type":"enum"},{"comment":"","display":"4G EPS ODB","filter":"","name":"eps_odb","optional":"true","type":"int"},{"comment":"","display":"4G HPLMN ODB","filter":"","name":"hplmn_odb","optional":"true","type":"int"},{"comment":"","display":"4G Access Restriction Data","filter":"","name":"ard","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (602, 'UDM', 'subscriberManagement', 'Subcriber Management', 'bde', 'udmuser', 'Batch Delete Subscriber Data', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Subcribers Number","filter":"","name":"sub_num","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (603, 'UDM', 'subscriberManagement', 'Subcriber Management', 'bmd', 'udmuser', 'Batch Modify Subscriber Data', '[{"comment":"","display":"Starting IMSI","filter":"","name":"start_imsi","optional":"false","type":"string"},{"comment":"","display":"Subcribers Number","filter":"","name":"sub_num","optional":"false","type":"string"},{"comment":"","display":"5G UE AMBR","filter":"","name":"ambr","optional":"true","type":"string"},{"comment":"","display":"5G SNSSAIs","filter":"","name":"nssai","optional":"true","type":"string"},{"comment":"","display":"5G Forbidden Areas","filter":"","name":"arfb","optional":"true","type":"string"},{"comment":"","display":"5G Service Area Restriction","filter":"","name":"sar","optional":"true","type":"string"},{"comment":"","display":"RAT Type","filter":"","name":"rat","optional":"true","type":"string"},{"comment":"","display":"Core Network","filter":"","name":"cn","optional":"true","type":"string"},{"comment":"","display":"5G SMF Selection Data","filter":"","name":"smf_sel","optional":"true","type":"string"},{"comment":"","display":"5G SM Data","filter":"","name":"sm_data","optional":"true","type":"string"},{"comment":"Specify mobile phone static IP address, and ''-'' indicates the use of dynamic IP address","display":"4G Static IP","filter":"","name":"static_ip","optional":"true","type":"string"},{"comment":"","display":"4G Context ID","filter":"","name":"context_id","optional":"true","type":"int"},{"comment":"","display":"4G APN Context","filter":"","name":"apn_context","optional":"true","type":"int"},{"comment":"","display":"4G EPS User Template Name","filter":"","name":"epstpl","optional":"true","type":"string"},{"comment":"","display":"4G EPS Flag","filter":"{\"0\":\"Disable\", \"1\":\"Enable\"}","name":"eps_flag","optional":"true","type":"enum"},{"comment":"","display":"4G EPS ODB","filter":"","name":"eps_odb","optional":"true","type":"int"},{"comment":"","display":"4G HPLMN ODB","filter":"","name":"hplmn_odb","optional":"true","type":"int"},{"comment":"","display":"4G Access Restriction Data","filter":"","name":"ard","optional":"true","type":"int"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (604, 'UDM', 'subscriberManagement', 'Subcriber Management', 'import', 'udmuser', 'Import Subscriber Data From File', '[{"comment":"","display":"Path File","filter":".txt","name":"path","optional":"false","type":"file"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (605, 'UDM', 'subscriberManagement', 'Subcriber Management', 'upload', 'udmuser', 'Upload Subscriber Data', '[{"comment":"","display":"Path File","filter":".txt","name":"path","optional":"false","type":"file"}]', 'Inactive');
INSERT INTO "mml_subscriber" VALUES (606, 'UDM', 'subscriberManagement', 'Subcriber Management', 'export', 'udmuser', 'Export Subscriber Data to File', '[{"comment":"","display":"Path File","filter":"","name":"path","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_subscriber" VALUES (607, 'UDM', 'subscriberManagement', 'Subcriber Management', 'sync', 'start', 'Sync UDM Data From Public UDM', 'null', 'Inactive');
INSERT INTO "mml_subscriber" VALUES (608, 'UDM', 'subscriberManagement', 'Subcriber Management', 'sync', 'state', 'Query State of Sync Task', 'null', 'Inactive');
INSERT INTO "mml_subscriber" VALUES (609, 'UDM', 'other', 'Other', 'set suci', '', 'Set SUCI', '[{"comment":"","display":"ID","filter":"","name":"id","optional":"false","type":"string"},{"comment":"","display":"Scheme","filter":"","name":"scheme","optional":"false","type":"string"},{"comment":"","display":"Private Key","filter":"","name":"privatekey","optional":"false","type":"string"},{"comment":"","display":"Public Key","filter":"","name":"publickey","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (610, 'UDM', 'other', 'Other', 'set op', '', 'Set OP', '[{"comment":"","display":"ID","filter":"","name":"id","optional":"false","type":"string"},{"comment":"","display":"Value","filter":"","name":"value","optional":"false","type":"string"}]', 'Active');
INSERT INTO "mml_subscriber" VALUES (611, 'UDM', 'other', 'Other', 'dec key', '', 'Check Key Profile', 'null', 'Active');

View File

@@ -0,0 +1,82 @@
-- ----------------------------
-- Table structure for mml_system
-- ----------------------------
DROP TABLE IF EXISTS "mml_system";
CREATE TABLE "mml_system" (
"id" integer NOT NULL,
"ne_type" text(16),
"category" text(32),
"cat_display" text(64),
"operation" text(10),
"object" text(16),
"mml_display" text(128),
"object_type" text(16),
"param_json" text,
"status" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of mml_system
-- ----------------------------
INSERT INTO "mml_system" VALUES (833, 'UPF', 'upfManagement', 'UPF Management', 'help', '', 'List UPF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (834, 'UPF', 'systemManagement', 'System Management', 'set', 'n3 driver', 'Set N3 Driver', 'mml', '[{"comment":"","display":"Type","filter":"","name":"type","optional":"false","type":"int"},{"comment":"","display":"IP address","filter":"","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Mask","filter":"","name":"mask","optional":"false","type":"string"},{"comment":"","display":"Mac address","filter":"","name":"mac","optional":"false","type":"string"},{"comment":"","display":"PCI address","filter":"","name":"pci","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (835, 'UPF', 'systemManagement', 'System Management', 'set', 'n4 ip', 'Set N4 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (836, 'UPF', 'systemManagement', 'System Management', 'set', 'n6 driver', 'Set N6 Driver', 'mml', '[{"comment":"","display":"Type","filter":"","name":"type","optional":"false","type":"int"},{"comment":"","display":"IP address","filter":"","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Mask","filter":"","name":"mask","optional":"false","type":"string"},{"comment":"","display":"Mac address","filter":"","name":"mac","optional":"false","type":"string"},{"comment":"","display":"PCI address","filter":"","name":"pci","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (837, 'UPF', 'systemManagement', 'System Management', 'set', 'n9 driver', 'Set N9 Driver', 'mml', '[{"comment":"","display":"Type","filter":"","name":"type","optional":"false","type":"int"},{"comment":"","display":"IP address","filter":"","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Mask","filter":"","name":"mask","optional":"false","type":"string"},{"comment":"","display":"Mac address","filter":"","name":"mac","optional":"false","type":"string"},{"comment":"","display":"PCI address","filter":"","name":"pci","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (838, 'UPF', 'systemManagement', 'System Management', 'set', 'dnn', 'Set DNN', 'mml', '[{"comment":"","display":"DNN","filter":"","name":"dnn","optional":"false","type":"string"},{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (839, 'UPF', 'systemManagement', 'System Management', 'set', 'pfcp', 'Set PFCP', 'mml', '[{"comment":"","display":"Path","filter":"","name":"path","optional":"false","type":"string"},{"comment":"","display":"Local IP Address","filter":"","name":"local","optional":"false","type":"string"},{"comment":"","display":"Remote IP Address","filter":"","name":"remote","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (840, 'UPF', 'systemManagement', 'System Management', 'set', 'qos', 'Set Qos', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"string"},{"comment":"","display":"5qi","filter":"","name":"5qi","optional":"false","type":"string"},{"comment":"","display":"Priority Level","filter":"","name":"priority","optional":"false","type":"int"},{"comment":"","display":"MBR","filter":"","name":"mbr","optional":"false","type":"string"},{"comment":"","display":"GBR","filter":"","name":"gbr","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (841, 'UPF', 'systemManagement', 'System Management', 'set', 'pccrule', 'Set PCC Rule', 'mml', '[{"comment":"","display":"Index","filter":"0~65535","name":"index","optional":"false","type":"int"},{"comment":"","display":"Precedence","filter":"","name":"precedence","optional":"false","type":"int"},{"comment":"","display":"QOS Index","filter":"","name":"qosindex","optional":"false","type":"int"},{"comment":"","display":"Filter Direction","filter":"{\"0\":\"NA\", \"1\":\"Uplink\", \"2\":\"Downlink\", \"3\":\"Bidirectionallink\"}","name":"direction","optional":"true","type":"int"},{"comment":"","display":"Filter","filter":"","name":"filter","optional":"true","type":"string"},{"comment":"","display":"Application ID","filter":"","name":"appid","optional":"true","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (842, 'UPF', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{"comment":"","display":"CMD","filter":"","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (843, 'UPF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (853, 'SMF', 'smfManagement', 'SMF Management', 'help', '', 'List SMF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (854, 'SMF', 'systemManagement', 'System Management', 'set', 'n7 server', 'Set N7 Server', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Port","filter":"0~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (855, 'SMF', 'systemManagement', 'System Management', 'set', 'n7 client', 'Set N7 Client', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (856, 'SMF', 'systemManagement', 'System Management', 'set', 'n10 server', 'Set N10 Server', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Port","filter":"0~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (857, 'SMF', 'systemManagement', 'System Management', 'set', 'n10 client', 'Set N10 Client', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (858, 'SMF', 'systemManagement', 'System Management', 'set', 'n11 server', 'Set N11 Server', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"},{"comment":"","display":"Port","filter":"0~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (859, 'SMF', 'systemManagement', 'System Management', 'set', 'n11 client', 'Set N11 Client', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"},{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (860, 'SMF', 'systemManagement', 'System Management', 'set', 'dnn', 'Set DNN', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"int"},{"comment":"","display":"DNN","filter":"","name":"DNN","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (862, 'SMF', 'systemManagement', 'System Management', 'set', 'qos', 'Set Qos', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"string"},{"comment":"","display":"SD","filter":"","name":"5qi","optional":"false","type":"string"},{"comment":"","display":"5qipl","filter":"","name":"5qipl","optional":"false","type":"string"},{"comment":"","display":"arppl","filter":"","name":"arppl","optional":"false","type":"string"},{"comment":"","display":"arppci","filter":"","name":"arppci","optional":"false","type":"string"},{"comment":"","display":"arppvi","filter":"","name":"arppvi","optional":"false","type":"string"},{"comment":"","display":"mfbrul","filter":"","name":"mfbrul","optional":"false","type":"string"},{"comment":"","display":"mfbrdl","filter":"","name":"mfbrdl","optional":"false","type":"string"},{"comment":"","display":"gfbrul","filter":"","name":"gfbrul","optional":"false","type":"string"},{"comment":"","display":"gfbrdl","filter":"","name":"gfbrdl","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (863, 'SMF', 'systemManagement', 'System Management', 'set', 'snssai', 'Set Snssai', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"string"},{"display":"sst-sd","filter":"","name":"sst-sd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (864, 'SMF', 'systemManagement', 'System Management', 'release', 'imsi', 'Release IMSI', 'mml', '[{"comment":"","display":"IMSI","filter":"","name":"imsi","optional":"false","type":"string"},{"display":"PDU Session Id","filter":"","name":"pduSessId","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (865, 'SMF', 'systemManagement', 'System Management', 'set', 'urr', 'Set URR', 'mml', '[{"comment":"","display":"Index","filter":"","name":"index","optional":"false","type":"string"},{"comment":"","display":"Quota Volume Tatol","filter":"","name":"quotavolumetatol","optional":"false","type":"string"},{"comment":"","display":"Quota Volume UL","filter":"","name":"quotavolumeul","optional":"false","type":"string"},{"comment":"","display":"Quota Volume DL","filter":"","name":"quotavolumedl","optional":"false","type":"string"},{"comment":"","display":"Quota Time","filter":"","name":"quotatime","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (866, 'SMF', 'systemManagement', 'System Management', 'set', 'dpi', 'Set DPI', 'mml', '[{"comment":"","display":"Flag","filter":"{\"0\":\"disable\", \"1\":\"enable\"}","name":"flag","optional":"false","type":"enum"},{"comment":"","display":"Max Detect Packet Number","filter":"","name":"max","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (867, 'SMF', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{"comment":"","display":"CMD","filter":"","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (868, 'SMF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (870, 'IMS', 'imsManagement', 'IMS Management', 'help', '', 'List IMS MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (871, 'N3IWF', 'n3iwfManagement', 'N3IWF Management', 'help', '', 'List N3IWF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (872, 'NSSF', 'nssfManagement', 'NSSF Management', 'help', '', 'List NSSF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (873, 'NRF', 'nrfManagement', 'NRF Management', 'help', '', 'List NRF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (874, 'PCF', 'pcfManagement', 'PCF Management', 'help', '', 'List PCF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (875, 'AMF', 'subsManagement', 'Subscriber Management', 'list', 'imsi', 'List Online IMSI', 'mml', '[{"comment":"","display":"IMSI","filter":"32","name":"imsi","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (876, 'AMF', 'amfManagement', 'AMF Management', 'help', '', 'List AMF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (877, 'AMF', 'systemManagement', 'System Management', 'set', 'n8_ip', 'Set N8 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (878, 'AMF', 'systemManagement', 'System Management', 'set', 'n11_ip', 'Set N11 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (879, 'AMF', 'systemManagement', 'System Management', 'set', 'n12_ip', 'Set N12 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"0~64","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (880, 'AMF', 'systemManagement', 'System Management', 'set', 'n2_ip', 'Set N2 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (881, 'AMF', 'systemManagement', 'System Management', 'set', 'n2_port', 'Set N2 Port', 'mml', '[{"comment":"","display":"Port","filter":"0~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (882, 'AMF', 'systemManagement', 'System Management', 'set', 'ntpversion', 'Set NTP Version', 'mml', '[{"comment":"","display":"Version","filter":"","name":"version","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (883, 'AMF', 'systemManagement', 'System Management', 'set', 'ntpmaxdiff', 'Set NTP Max Diff', 'mml', '[{"comment":"","display":"Max Value(ms)","filter":"100~2000","name":"value","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (884, 'AMF', 'systemManagement', 'System Management', 'set', 'ntpsynctimer', 'Set NTP Sync Timer', 'mml', '[{"comment":"","display":"Periods(second)","filter":"","name":"periods","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (885, 'AMF', 'systemManagement', 'System Management', 'add', 'slice', 'Add Slice', 'mml', '[{"comment":"","display":"SST","filter":"","name":"sst","optional":"false","type":"string"},{"comment":"","display":"SD","filter":"","name":"sd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (886, 'AMF', 'systemManagement', 'System Management', 'deregister', 'imsi', 'Deregister IMSI', 'mml', '[{"comment":"","display":"IMSI","filter":"","name":"IMSI","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (887, 'AMF', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{"comment":"","display":"CMD","filter":"","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (888, 'AMF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (889, 'UDM', 'udmManagement', 'UDM Management', 'help', '', 'List UDM MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (890, 'UDM', 'systemManagement', 'System Management', 'set', 'n8ip', 'Set N8 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"ipv4"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (891, 'UDM', 'systemManagement', 'System Management', 'set', 'n8port', 'Set N8 Port', 'mml', '[{"comment":"","display":"Port","filter":"1~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (892, 'UDM', 'systemManagement', 'System Management', 'set', 'n8scheme', 'Set N8 Scheme', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (893, 'UDM', 'systemManagement', 'System Management', 'set', 'n10ip', 'Set N10 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (894, 'UDM', 'systemManagement', 'System Management', 'set', 'n10port', 'Set N10 Port', 'mml', '[{"comment":"","display":"Port","filter":"1~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (895, 'UDM', 'systemManagement', 'System Management', 'set', 'n10scheme', 'Set N10 Scheme', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (896, 'UDM', 'systemManagement', 'System Management', 'exec', 'shell', 'Execute Shell Command', 'mml', '[{"comment":"","display":"CMD","filter":"","name":"cmd","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (897, 'UDM', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (898, 'AUSF', 'ausfManagement', 'AUSF Management', 'help', '', 'List AUSF MML CMD', 'mml', 'null', 'Active');
INSERT INTO "mml_system" VALUES (899, 'AUSF', 'systemManagement', 'System Management', 'set', 'n12ip', 'Set N12 IP Address', 'mml', '[{"comment":"","display":"IP Address","filter":"","name":"ip","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (900, 'AUSF', 'systemManagement', 'System Management', 'set', 'n12port', 'Set N12 Port', 'mml', '[{"comment":"","display":"Port","filter":"1~65535","name":"port","optional":"false","type":"int"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (901, 'AUSF', 'systemManagement', 'System Management', 'set', 'n12scheme', 'Set N12 Scheme', 'mml', '[{"comment":"","display":"Scheme","filter":"{\"0\":\"http\", \"1\":\"https\"}","name":"scheme","optional":"false","type":"enum"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (902, 'AUSF', 'systemManagement', 'System Management', 'set', 'supirange', 'Set SUPI Range', 'mml', '[{"comment":"","display":"SUPI Range","filter":"","name":"supirange","optional":"false","type":"string"}]', 'Inactive');
INSERT INTO "mml_system" VALUES (903, 'AUSF', 'systemManagement', 'System Management', 'reload', '', 'Reload Config', 'mml', 'null', 'Inactive');
INSERT INTO "mml_system" VALUES (904, 'MME', 'mmeManagement', 'MME Management', 'help', '', 'List MME MML CMD', 'mml', 'null', 'Active');

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for pm_custom_title
-- ----------------------------
DROP TABLE IF EXISTS "pm_custom_title";
CREATE TABLE "pm_custom_title" (
"id" integer NOT NULL,
"ne_type" text(16),
"kpi_code" text(32),
"kpi_id" text(64),
"kpi_set" text,
"expression" text(1024),
"object_type" text(16),
"period" text(8),
"status" text(255),
"title" text(255),
"description" text(255),
"update_time" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of pm_custom_title
-- ----------------------------
INSERT INTO "pm_custom_title" VALUES (3, 'AMF', NULL, 'AMF.CKpi.AuthFailRate', 'AMF.RegSub.CmIdle,AMF.RegSubMean', 'AMF.AuthFail/AMF.AuthReqAMF.RegSub.CmIdleAMF.RegSubMean', 'AmfFunction', '15', 'Active', 'AMF鉴权失败率', '', '2023-08-18 18:06:10');
INSERT INTO "pm_custom_title" VALUES (4, 'AMF', NULL, 'AMF会话保持数', NULL, 'AMF.SessionCreateSucc/AMF.SmContextCreateReq', 'EpRpDynN11Amf', '15', NULL, 'AMF会话保持数', 'AMF会话保持数', '2023-08-18 14:29:58');
INSERT INTO "pm_custom_title" VALUES (7, 'AMF', NULL, 'AMF', 'AMF.AuthFail,AMF.AuthFail.20', 'AMF.AuthFail*AMF.AuthFail.20', 'AmfFunction', '15', NULL, 'asdas', '', '2023-08-18 14:30:27');
INSERT INTO "pm_custom_title" VALUES (8, 'PCF', 'PCFHA01', 'PCF.AmAssocNbrMean', 'PCF.PolicyAmAssocNotifSucc,PCF.PolicyAmAssocDeleteSucc', 'PCF.PolicyAmAssocNotifSuccPCF.PolicyAmAssocDeleteSucc', 'PcfFunction', '15', 'Active', 'PCF指标定义', '', '2023-08-18 18:05:08');

View File

@@ -0,0 +1,15 @@
-- ----------------------------
-- Table structure for title_info
-- ----------------------------
DROP TABLE IF EXISTS "title_info";
CREATE TABLE "title_info" (
"id" integer NOT NULL,
"tag" text(15),
"title_json" text,
"remark" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of title_info
-- ----------------------------

View File

@@ -0,0 +1,60 @@
-- ----------------------------
-- Table structure for trace_info
-- ----------------------------
DROP TABLE IF EXISTS "trace_info";
CREATE TABLE "trace_info" (
"ne_type" text(32) NOT NULL,
"interface" text(10) NOT NULL,
"message_type" integer(4) NOT NULL,
"message_title" text(64),
PRIMARY KEY ("ne_type", "interface", "message_type")
);
-- ----------------------------
-- Records of trace_info
-- ----------------------------
INSERT INTO "trace_info" VALUES ('AMF', 'N1', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N11', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N12', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N14', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N15', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N2', 1, NULL);
INSERT INTO "trace_info" VALUES ('AMF', 'N8', 1, NULL);
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 1, 'Nausf_AUTH_Post ue-authentications');
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 2, 'Nausf_AUTH_Put 5g-aka-confirmation');
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 3, 'Nausf_AUTH_Delete 5g-aka-confirmation');
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 4, 'Nausf_AUTH_Post eap-session');
INSERT INTO "trace_info" VALUES ('AUSF', 'N12', 5, 'Nausf_AUTH_Delete eap-session');
INSERT INTO "trace_info" VALUES ('SMF', 'N10', 1, NULL);
INSERT INTO "trace_info" VALUES ('SMF', 'N11', 1, NULL);
INSERT INTO "trace_info" VALUES ('SMF', 'N4', 1, NULL);
INSERT INTO "trace_info" VALUES ('SMF', 'N7', 1, NULL);
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 1, 'Nudm_SDM_Get sm-data');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 2, 'Nudm_SDM_Post sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 3, 'Nudm_SDM_Patch sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 4, 'Nudm_SDM_Delete sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 5, 'Nudm_SDM_Get id-translation-result');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 6, 'Nudm_UECM_Get smf-registrations');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 7, 'Nudm_UECM_Put smf-registrations');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 8, 'Nudm_UECM_Patch smf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 9, 'Nudm_UECM_Get smf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N10', 10, 'Nudm_UECM_Delete smf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N13', 1, 'Nudm_UEAU_Post generate-auth-data');
INSERT INTO "trace_info" VALUES ('UDM', 'N13', 2, 'Nudm_UEAU_Post auth-events');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 1, 'Nudm_SDM_Get supi');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 2, 'Nudm_SDM_Get nssai');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 3, 'Nudm_SDM_Get am-data');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 4, 'Nudm_SDM_Put am-data cag-ack');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 5, 'Nudm_SDM_Get smf-select-data');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 6, 'Nudm_SDM_Post sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 7, 'Nudm_SDM_Patch sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 8, 'Nudm_SDM_Delete sdm-subscriptions');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 9, 'Nudm_SDM_Get id-translation-result');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 10, 'Nudm_UECM_Put amf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 11, 'Nudm_UECM_Patch amf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 12, 'Nudm_UECM_Get amf-3gpp-access');
INSERT INTO "trace_info" VALUES ('UDM', 'N8', 13, 'Namf_Callback Deregistraion');
INSERT INTO "trace_info" VALUES ('UPF', 'N3', 1, NULL);
INSERT INTO "trace_info" VALUES ('UPF', 'N4', 1, NULL);
INSERT INTO "trace_info" VALUES ('UPF', 'N6', 1, NULL);
INSERT INTO "trace_info" VALUES ('UPF', 'N9', 1, NULL);

View File

@@ -0,0 +1,17 @@
-- ----------------------------
-- Table structure for 4a_log
-- ----------------------------
DROP TABLE IF EXISTS "4a_log";
CREATE TABLE "4a_log" (
"LogTime" text,
"SubUser" text(32),
"App" text(64),
"Sip" text(32),
"AppModule" text(32),
"OpType" text(255),
"OpText" text(255)
);
-- ----------------------------
-- Records of 4a_log
-- ----------------------------

View File

@@ -0,0 +1,57 @@
-- ----------------------------
-- Table structure for alarm
-- ----------------------------
DROP TABLE IF EXISTS "alarm";
CREATE TABLE "alarm" (
"id" integer NOT NULL,
"ne_type" text(32) NOT NULL,
"ne_id" text(64) NOT NULL,
"ne_name" text(32),
"province" text(32),
"pv_flag" text(10),
"alarm_seq" integer(11),
"alarm_id" text(32) NOT NULL,
"alarm_title" text(255),
"alarm_code" integer(11),
"event_time" integer(20),
"alarm_type" text(64),
"orig_severity" text(10),
"perceived_severity" text(10),
"object_uid" text(64),
"object_name" text(64),
"object_type" text(20),
"location_info" text(2048),
"alarm_status" text(10),
"specific_problem" text(255),
"specific_problem_id" text(100),
"add_info" text(2048),
"ack_state" integer(11),
"ack_time" integer(20),
"ack_user" text(16),
"clear_type" integer(11),
"clear_time" integer(20),
"clear_user" text(16),
"timestamp" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table alarm
-- ----------------------------
CREATE INDEX "idx_status_severity_time"
ON "alarm" (
"alarm_status" ASC,
"orig_severity" ASC,
"event_time" ASC
);
CREATE UNIQUE INDEX "uk_uni_aid_ne_aseq"
ON "alarm" (
"ne_type" ASC,
"ne_id" ASC,
"alarm_id" ASC,
"alarm_seq" ASC
);
-- ----------------------------
-- Records of alarm
-- ----------------------------

View File

@@ -0,0 +1,47 @@
-- ----------------------------
-- Table structure for alarm_event
-- ----------------------------
DROP TABLE IF EXISTS "alarm_event";
CREATE TABLE "alarm_event" (
"id" integer NOT NULL,
"ne_type" text(32) NOT NULL,
"ne_id" text(64) NOT NULL,
"alarm_seq" integer(11),
"alarm_id" text(32) NOT NULL,
"alarm_title" text(255),
"alarm_code" integer(11),
"event_time" integer(20),
"object_uid" text(64),
"object_name" text(64),
"object_type" text(20),
"location_info" text(2048),
"alarm_status" text(10),
"specific_problem" text(255),
"specific_problem_id" text(100),
"add_info" text(2048),
"clear_type" integer(11),
"clear_time" integer(20),
"clear_user" text(16),
"timestamp" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table alarm_event
-- ----------------------------
CREATE INDEX "idx_astatus_etime"
ON "alarm_event" (
"alarm_status" ASC,
"event_time" ASC
);
CREATE UNIQUE INDEX "uk_ti_aid_aseq"
ON "alarm_event" (
"ne_type" ASC,
"ne_id" ASC,
"alarm_id" ASC,
"alarm_seq" ASC
);
-- ----------------------------
-- Records of alarm_event
-- ----------------------------

View File

@@ -0,0 +1,26 @@
-- ----------------------------
-- Table structure for alarm_forward_log
-- ----------------------------
DROP TABLE IF EXISTS "alarm_forward_log";
CREATE TABLE "alarm_forward_log" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_id" text(64) NOT NULL,
"alarm_seq" integer(11),
"alarm_id" text(32),
"alarm_code" integer(11),
"alarm_title" text(255),
"alarm_status" text(10),
"alarm_type" text(10),
"orig_severity" text(10),
"event_time" integer(20),
"created_at" integer(20),
"type" text(255),
"target" text(255),
"result" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of alarm_forward_log
-- ----------------------------

View File

@@ -0,0 +1,23 @@
-- ----------------------------
-- Table structure for alarm_log
-- ----------------------------
DROP TABLE IF EXISTS "alarm_log";
CREATE TABLE "alarm_log" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_id" text(64) NOT NULL,
"alarm_seq" integer(11),
"alarm_id" text(32),
"alarm_code" integer(11),
"alarm_title" text(255),
"alarm_status" text(10),
"alarm_type" text(10),
"orig_severity" text(10),
"event_time" integer(20),
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of alarm_log
-- ----------------------------

View File

@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for alarm_relation
-- ----------------------------
DROP TABLE IF EXISTS "alarm_relation";
CREATE TABLE "alarm_relation" (
"id" integer NOT NULL,
"created_at" text(3),
"updated_at" text(3),
"deleted_at" text(3),
"root_alarm_id" text(64),
"alarm_id" text(64),
"relation_type" text(64),
"add_info" text(64),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table alarm_relation
-- ----------------------------
CREATE INDEX "idx_alarm_relation_deleted_at"
ON "alarm_relation" (
"deleted_at" ASC
);
-- ----------------------------
-- Records of alarm_relation
-- ----------------------------

View File

@@ -0,0 +1,25 @@
-- ----------------------------
-- Table structure for alarm_subscribe
-- ----------------------------
DROP TABLE IF EXISTS "alarm_subscribe";
CREATE TABLE "alarm_subscribe" (
"id" integer NOT NULL,
"created_at" text(3),
"updated_at" text(3),
"deleted_at" text(3),
"user" text(64),
"callback_url" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table alarm_subscribe
-- ----------------------------
CREATE INDEX "idx_alarm_subscribe_deleted_at"
ON "alarm_subscribe" (
"deleted_at" ASC
);
-- ----------------------------
-- Records of alarm_subscribe
-- ----------------------------

View File

@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for cdr_event
-- ----------------------------
DROP TABLE IF EXISTS "cdr_event";
CREATE TABLE "cdr_event" (
"id" integer NOT NULL,
"ne_type" text(32),
"ne_name" text(64),
"rm_uid" text(32),
"timestamp" integer(20),
"cdr_json" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table cdr_event
-- ----------------------------
CREATE INDEX "idx_uid_t"
ON "cdr_event" (
"rm_uid" ASC,
"timestamp" ASC
);
-- ----------------------------
-- Records of cdr_event
-- ----------------------------

View File

@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for cdr_event_ims
-- ----------------------------
DROP TABLE IF EXISTS "cdr_event_ims";
CREATE TABLE "cdr_event_ims" (
"id" integer NOT NULL,
"ne_type" text(32),
"ne_name" text(64),
"rm_uid" text(32),
"timestamp" integer(20),
"cdr_json" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table cdr_event_ims
-- ----------------------------
CREATE INDEX "idx_ims_uid_t"
ON "cdr_event_ims" (
"rm_uid" ASC,
"timestamp" ASC
);
-- ----------------------------
-- Records of cdr_event_ims
-- ----------------------------

View File

@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for cdr_event_sgwc
-- ----------------------------
DROP TABLE IF EXISTS "cdr_event_sgwc";
CREATE TABLE "cdr_event_sgwc" (
"id" integer NOT NULL,
"ne_type" text(32),
"ne_name" text(64),
"rm_uid" text(32),
"timestamp" integer(20),
"cdr_json" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table cdr_event_sgwc
-- ----------------------------
CREATE INDEX "idx_sgwc_uid_t"
ON "cdr_event_sgwc" (
"rm_uid" ASC,
"timestamp" ASC
);
-- ----------------------------
-- Records of cdr_event_sgwc
-- ----------------------------

View File

@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for cdr_event_smf
-- ----------------------------
DROP TABLE IF EXISTS "cdr_event_smf";
CREATE TABLE "cdr_event_smf" (
"id" integer NOT NULL,
"ne_type" text(32),
"ne_name" text(64),
"rm_uid" text(32),
"timestamp" integer(20),
"cdr_json" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table cdr_event_smf
-- ----------------------------
CREATE INDEX "idx_smf_uid_t"
ON "cdr_event_smf" (
"rm_uid" ASC,
"timestamp" ASC
);
-- ----------------------------
-- Records of cdr_event_smf
-- ----------------------------

View File

@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for cdr_event_smsc
-- ----------------------------
DROP TABLE IF EXISTS "cdr_event_smsc";
CREATE TABLE "cdr_event_smsc" (
"id" integer NOT NULL,
"ne_type" text(32),
"ne_name" text(64),
"rm_uid" text(32),
"timestamp" integer(20),
"cdr_json" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table cdr_event_smsc
-- ----------------------------
CREATE INDEX "idx_smsc_uid_t"
ON "cdr_event_smsc" (
"rm_uid" ASC,
"timestamp" ASC
);
-- ----------------------------
-- Records of cdr_event_smsc
-- ----------------------------

View File

@@ -0,0 +1,20 @@
-- ----------------------------
-- Table structure for cert_info
-- ----------------------------
DROP TABLE IF EXISTS "cert_info";
CREATE TABLE "cert_info" (
"id" integer NOT NULL,
"file_name" text(64),
"key_length" integer(11),
"key_algorithm" text(16),
"cert_format" text(16),
"cert_expiration" text(24),
"created_at" text,
"updated_at" text,
"deleted_at" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of cert_info
-- ----------------------------

View File

@@ -0,0 +1,17 @@
-- ----------------------------
-- Table structure for event_log
-- ----------------------------
DROP TABLE IF EXISTS "event_log";
CREATE TABLE "event_log" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_id" text(32) NOT NULL,
"event" text(255) NOT NULL,
"event_time" text,
"log_time" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of event_log
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_c_report
-- ----------------------------
DROP TABLE IF EXISTS "kpi_c_report";
CREATE TABLE "kpi_c_report" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_c_report
-- ----------------------------
CREATE INDEX "idx_c_uid_at"
ON "kpi_c_report" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_c_report
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_c_report_amf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_c_report_amf";
CREATE TABLE "kpi_c_report_amf" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_c_report_amf
-- ----------------------------
CREATE INDEX "idx_c_amf_uid_at"
ON "kpi_c_report_amf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_c_report_amf
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_c_report_ims
-- ----------------------------
DROP TABLE IF EXISTS "kpi_c_report_ims";
CREATE TABLE "kpi_c_report_ims" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_c_report_ims
-- ----------------------------
CREATE INDEX "idx_c_ims_uid_at"
ON "kpi_c_report_ims" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_c_report_ims
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_c_report_mme
-- ----------------------------
DROP TABLE IF EXISTS "kpi_c_report_mme";
CREATE TABLE "kpi_c_report_mme" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_c_report_mme
-- ----------------------------
CREATE INDEX "idx_c_mme_uid_at"
ON "kpi_c_report_mme" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_c_report_mme
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_c_report_smf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_c_report_smf";
CREATE TABLE "kpi_c_report_smf" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_c_report_smf
-- ----------------------------
CREATE INDEX "idx_c_smf_uid_at"
ON "kpi_c_report_smf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_c_report_smf
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_c_report_udm
-- ----------------------------
DROP TABLE IF EXISTS "kpi_c_report_udm";
CREATE TABLE "kpi_c_report_udm" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_c_report_udm
-- ----------------------------
CREATE INDEX "idx_c_udm_uid_at"
ON "kpi_c_report_udm" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_c_report_udm
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_c_report_upf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_c_report_upf";
CREATE TABLE "kpi_c_report_upf" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_c_report_upf
-- ----------------------------
CREATE INDEX "idx_c_upf_uid_at"
ON "kpi_c_report_upf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_c_report_upf
-- ----------------------------

View File

@@ -0,0 +1,51 @@
-- ----------------------------
-- Table structure for kpi_c_title
-- ----------------------------
DROP TABLE IF EXISTS "kpi_c_title";
CREATE TABLE "kpi_c_title" (
"id" integer NOT NULL,
"ne_type" text(16),
"kpi_id" text(16),
"title" text(255),
"expression" text(1024),
"unit" text(16),
"description" text(255),
"status" text(16),
"created_by" text(32),
"updated_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_c_title
-- ----------------------------
CREATE UNIQUE INDEX "idx_ne_kpi_id"
ON "kpi_c_title" (
"ne_type" ASC,
"kpi_id" ASC
);
-- ----------------------------
-- Records of kpi_c_title
-- ----------------------------
INSERT INTO "kpi_c_title" VALUES (1, 'AMF', 'AMF.C.01', 'Regstration Success Rate', '(''AMF.03''/''AMF.02'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (2, 'AMF', 'AMF.C.02', 'Paging Success Rate', '((''AMF.15''+''AMF.16'')/''AMF.17'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (3, 'AMF', 'AMF.C.03', 'Service Request Success Rate', '(1-''AMF.18''/''AMF.19'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (4, 'AMF', 'AMF.C.04', '5G Register Subscriber', '''AMF.01''', ' ', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (5, 'SMF', 'SMF.C.01', 'SA_MeanPduSession', '''SMF.01''', ' ', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (6, 'SMF', 'SMF.C.02', 'PDU Session Establishment Success Rate', '(''SMF.02''/''SMF.03'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (7, 'SMF', 'SMF.C.03', 'IMS Session Establishment Success Rate', '(''SMF.04''/''SMF.05'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (8, 'MME', 'MME.C.01', 'Attach Success Rate ', '(''MME.A.02''/''MME.A.01'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (9, 'UPF', 'UPF.C.01', 'PFCP Establish Success Rate ', '(''UPF.01''/''UPF.02'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (10, 'UPF', 'UPF.C.02', 'N6_Uplink_Throughout', '(''UPF.03'')*8/5/1000/1000', 'Mbps', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (11, 'UPF', 'UPF.C.03', 'N3_Uplink_Throughout', '(''UPF.06'')*8/5/1000/1000', 'Mbps', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (12, 'UDM', 'UDM.C.01', 'AMF_UECM_Success_Rate ', '(''UDM.03''/''UDM.02'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (13, 'UDM', 'UDM.C.02', 'SMF_UECM_Success_Rate ', '(''UDM.04''/''UDM.05'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (14, 'IMS', 'IMS.C.01', 'InitReg_Success_Rate', '(''SCSCF.03''/''SCSCF.04'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (15, 'IMS', 'IMS.C.02', 'MO_Success_Rate', '(''SCSCF.05''/''SCSCF.06'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (16, 'IMS', 'IMS.C.03', 'MT_Success_Rate', '(''SCSCF.07''/''SCSCF.08'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (17, 'IMS', 'IMS.C.04', 'Service_Success_Rate ', '((''SCSCF.05''+''SCSCF.07'')/(''SCSCF.06''+''SCSCF.08''))*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (18, 'SMF', 'SMF.C.06', 'IMS_DefaultBear_Success_Rate ', '(''SMF.13''/''SMF.14'')*100', '%', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (19, 'SMF', 'SMF.C.07', 'Bear_Success_Rate_new', '((''SMF.09''+''SMF.11'')/(''SMF.10''+''SMF.12'') )*100', '%', '', '2', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (22, 'UPF', 'UPF.C.06', 'N3_Downlink_Throughout', '(''UPF.05'')*8/5/1000/1000', 'Mbps', '', '1', 'admin', 1739362260083);
INSERT INTO "kpi_c_title" VALUES (23, 'UPF', 'UPF.C.07', 'N6_Downlink_Throughout', '(''UPF.04'')*8/5/1000/1000', 'Mbps', '', '1', 'admin', 1739362260083);

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report";
CREATE TABLE "kpi_report" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report
-- ----------------------------
CREATE INDEX "idx_uid_at"
ON "kpi_report" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_amf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_amf";
CREATE TABLE "kpi_report_amf" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_amf
-- ----------------------------
CREATE INDEX "idx_amf_uid_at"
ON "kpi_report_amf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_amf
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_ausf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_ausf";
CREATE TABLE "kpi_report_ausf" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_ausf
-- ----------------------------
CREATE INDEX "idx_ausf_uid_at"
ON "kpi_report_ausf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_ausf
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_cbc
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_cbc";
CREATE TABLE "kpi_report_cbc" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_cbc
-- ----------------------------
CREATE INDEX "idx_cbc_uid_at"
ON "kpi_report_cbc" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_cbc
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_hlr
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_hlr";
CREATE TABLE "kpi_report_hlr" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_hlr
-- ----------------------------
CREATE INDEX "idx_hlr_uid_at"
ON "kpi_report_hlr" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_hlr
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_ims
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_ims";
CREATE TABLE "kpi_report_ims" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_ims
-- ----------------------------
CREATE INDEX "idx_ims_uid_at"
ON "kpi_report_ims" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_ims
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_mme
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_mme";
CREATE TABLE "kpi_report_mme" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_mme
-- ----------------------------
CREATE INDEX "idx_mme_uid_at"
ON "kpi_report_mme" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_mme
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_mocngw
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_mocngw";
CREATE TABLE "kpi_report_mocngw" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_mocngw
-- ----------------------------
CREATE INDEX "idx_mocngw_uid_at"
ON "kpi_report_mocngw" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_mocngw
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_nssf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_nssf";
CREATE TABLE "kpi_report_nssf" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_nssf
-- ----------------------------
CREATE INDEX "idx_nssf_uid_at"
ON "kpi_report_nssf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_nssf
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_pcf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_pcf";
CREATE TABLE "kpi_report_pcf" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_pcf
-- ----------------------------
CREATE INDEX "idx_pcf_uid_at"
ON "kpi_report_pcf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_pcf
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_smf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_smf";
CREATE TABLE "kpi_report_smf" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_smf
-- ----------------------------
CREATE INDEX "idx_smf_uid_at"
ON "kpi_report_smf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_smf
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_smsc
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_smsc";
CREATE TABLE "kpi_report_smsc" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_smsc
-- ----------------------------
CREATE INDEX "idx_smsc_uid_at"
ON "kpi_report_smsc" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_smsc
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_udm
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_udm";
CREATE TABLE "kpi_report_udm" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_udm
-- ----------------------------
CREATE INDEX "idx_udm_uid_at"
ON "kpi_report_udm" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_udm
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for kpi_report_upf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_upf";
CREATE TABLE "kpi_report_upf" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_name" text(64),
"rm_uid" text(64),
"date" text(10) NOT NULL,
"start_time" text(10),
"end_time" text(10),
"index" integer(11) NOT NULL,
"granularity" integer(11),
"kpi_values" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table kpi_report_upf
-- ----------------------------
CREATE INDEX "idx_upf_uid_at"
ON "kpi_report_upf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_upf
-- ----------------------------

View File

@@ -0,0 +1,25 @@
-- ----------------------------
-- Table structure for measure_data
-- ----------------------------
DROP TABLE IF EXISTS "measure_data";
CREATE TABLE "measure_data" (
"id" integer NOT NULL,
"date" text,
"task_id" integer(11),
"ne_name" text(64),
"rm_uid" text(64),
"ne_type" text(16),
"granul_option" text(255),
"kpi_code" text(32),
"kpi_id" text(64),
"kpi_ext" text(32),
"start_time" text,
"end_time" text,
"value" integer(20),
"timestamp" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of measure_data
-- ----------------------------

View File

@@ -0,0 +1,26 @@
-- ----------------------------
-- Table structure for measure_task
-- ----------------------------
DROP TABLE IF EXISTS "measure_task";
CREATE TABLE "measure_task" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_ids" text,
"kpi_set" text,
"start_time" text(32),
"end_time" text(32),
"periods" text,
"schedule" text,
"granul_option" text(255) NOT NULL,
"status" text(255) NOT NULL,
"account_id" text(32),
"comment" text(255),
"create_time" text,
"update_time" text,
"delete_time" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of measure_task
-- ----------------------------

View File

@@ -0,0 +1,20 @@
-- ----------------------------
-- Table structure for measure_threshold
-- ----------------------------
DROP TABLE IF EXISTS "measure_threshold";
CREATE TABLE "measure_threshold" (
"id" integer NOT NULL,
"ne_type" text(16),
"kpi_set" text(1024),
"threshold" integer(20),
"status" text(255),
"orig_severity" text(255),
"alarm_code" text(16),
"alarm_flag" integer(4),
"create_time" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of measure_threshold
-- ----------------------------

View File

@@ -0,0 +1,19 @@
-- ----------------------------
-- Table structure for mml_log
-- ----------------------------
DROP TABLE IF EXISTS "mml_log";
CREATE TABLE "mml_log" (
"id" integer NOT NULL,
"user" text(32),
"ip" text(64),
"ne_type" text(32),
"ne_id" text(32),
"mml" text(1024),
"result" text(2048),
"log_time" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of mml_log
-- ----------------------------

View File

@@ -0,0 +1,21 @@
-- ----------------------------
-- Table structure for monitor_base
-- ----------------------------
DROP TABLE IF EXISTS "monitor_base";
CREATE TABLE "monitor_base" (
"id" integer NOT NULL,
"create_time" integer(20),
"cpu" integer,
"load_usage" integer,
"cpu_load1" integer,
"cpu_load5" integer,
"cpu_load15" integer,
"memory" integer,
"ne_type" text(32),
"ne_id" text(32),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of monitor_base
-- ----------------------------

View File

@@ -0,0 +1,20 @@
-- ----------------------------
-- Table structure for monitor_io
-- ----------------------------
DROP TABLE IF EXISTS "monitor_io";
CREATE TABLE "monitor_io" (
"id" integer NOT NULL,
"create_time" integer(20),
"name" text(50) NOT NULL,
"read" integer(11),
"write" integer(11),
"count" integer(11),
"time" integer(11),
"ne_type" text(32),
"ne_id" text(32),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of monitor_io
-- ----------------------------

View File

@@ -0,0 +1,18 @@
-- ----------------------------
-- Table structure for monitor_network
-- ----------------------------
DROP TABLE IF EXISTS "monitor_network";
CREATE TABLE "monitor_network" (
"id" integer NOT NULL,
"create_time" integer(20),
"name" text(50) NOT NULL,
"up" integer,
"down" integer,
"ne_type" text(32),
"ne_id" text(32),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of monitor_network
-- ----------------------------

View File

@@ -0,0 +1,33 @@
-- ----------------------------
-- Table structure for nb_state
-- ----------------------------
DROP TABLE IF EXISTS "nb_state";
CREATE TABLE "nb_state" (
"id" integer NOT NULL,
"ne_type" text(32) NOT NULL,
"ne_id" text(32) NOT NULL,
"rm_uid" text(128),
"create_time" integer(20),
"address" text(255),
"name" text(64),
"position" text(64),
"nb_name" text(128),
"state" text(12),
"time" text(64),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table nb_state
-- ----------------------------
CREATE UNIQUE INDEX "uk_state_type_id_uid_cat"
ON "nb_state" (
"ne_type" ASC,
"ne_id" ASC,
"rm_uid" ASC,
"create_time" ASC
);
-- ----------------------------
-- Records of nb_state
-- ----------------------------

View File

@@ -0,0 +1,23 @@
-- ----------------------------
-- Table structure for nbi_alarm_log
-- ----------------------------
DROP TABLE IF EXISTS "nbi_alarm_log";
CREATE TABLE "nbi_alarm_log" (
"id" integer NOT NULL,
"op_user" text(16),
"src_ip" text(64) NOT NULL,
"ne_type" text(16),
"ne_id" text(32),
"alarm_seq" integer(11) NOT NULL,
"alarm_id" text(32),
"alarm_code" integer(11),
"alarm_status" integer(11),
"event_time" text(32),
"log_time" text NOT NULL,
"a_id" integer(11) NOT NULL,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of nbi_alarm_log
-- ----------------------------

View File

@@ -0,0 +1,26 @@
-- ----------------------------
-- Table structure for nbi_cm
-- ----------------------------
DROP TABLE IF EXISTS "nbi_cm";
CREATE TABLE "nbi_cm" (
"id" integer NOT NULL,
"timestamp" text,
"time_zone" text(10),
"vendor_name" text(65),
"ne_type" text(16),
"cm_version" text(32),
"rm_uid" text(32),
"ne_id" text(32),
"user_label" text(64),
"object_type" text(32),
"pv_flag" text(255),
"vm_id" text(128),
"vnf_instance_id" text(64),
"value_json" text,
"status" text(255) NOT NULL,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of nbi_cm
-- ----------------------------

View File

@@ -0,0 +1,37 @@
-- ----------------------------
-- Table structure for nbi_operation_log
-- ----------------------------
DROP TABLE IF EXISTS "nbi_operation_log";
CREATE TABLE "nbi_operation_log" (
"id" integer NOT NULL,
"src_ip" text(64),
"op_user" text(32),
"dst_ip" text(64),
"op_type" text(32),
"op_proto" text(32),
"op_params" text(255),
"op_result" text(64),
"op_time" text,
"log_time" text,
"created_at" text,
"pri" text,
"vendor" text,
"ne_name" text,
"rm_uid" text,
"ne_type" text,
"log_type" text,
"user_name" text,
"terminal_ip" text,
"start_time" text,
"end_time" text,
"oper_type" text,
"risk_level" text,
"oper_content" text,
"oper_result" text,
"failure_cause" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of nbi_operation_log
-- ----------------------------

View File

@@ -0,0 +1,24 @@
-- ----------------------------
-- Table structure for nbi_pm
-- ----------------------------
DROP TABLE IF EXISTS "nbi_pm";
CREATE TABLE "nbi_pm" (
"id" integer NOT NULL,
"date" text,
"index" integer(11),
"start_time" text,
"time_zone" text(16),
"ne_name" text(64),
"pm_version" text(16),
"period" text(6),
"rm_uid" text(64),
"ne_type" text(16),
"dn" text(255),
"datas" text,
"timestamp" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of nbi_pm
-- ----------------------------

View File

@@ -0,0 +1,24 @@
-- ----------------------------
-- Table structure for nbi_secure_log
-- ----------------------------
DROP TABLE IF EXISTS "nbi_secure_log";
CREATE TABLE "nbi_secure_log" (
"id" integer NOT NULL,
"created_at" text(3),
"pri" text,
"vendor" text,
"ne_name" text,
"rm_uid" text,
"ne_type" text,
"log_type" text,
"event_name" text,
"start_time" text,
"user_name" text,
"terminal_ip" text,
"oper_result" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of nbi_secure_log
-- ----------------------------

View File

@@ -0,0 +1,16 @@
-- ----------------------------
-- Table structure for ne_check
-- ----------------------------
DROP TABLE IF EXISTS "ne_check";
CREATE TABLE "ne_check" (
"id" integer(10) NOT NULL,
"status" integer(4),
"result" text(64),
"create_time" text,
"ne_type" text(32),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of ne_check
-- ----------------------------

View File

@@ -0,0 +1,30 @@
-- ----------------------------
-- Table structure for ne_config_backup
-- ----------------------------
DROP TABLE IF EXISTS "ne_config_backup";
CREATE TABLE "ne_config_backup" (
"id" integer NOT NULL,
"ne_type" text(32) NOT NULL,
"ne_id" text(32) NOT NULL,
"name" text(128),
"path" text(255),
"remark" text(400),
"create_by" text(50),
"create_time" integer(20),
"update_by" text(50),
"update_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table ne_config_backup
-- ----------------------------
CREATE INDEX "idx_cb_type_id"
ON "ne_config_backup" (
"ne_type" ASC,
"ne_id" ASC
);
-- ----------------------------
-- Records of ne_config_backup
-- ----------------------------

View File

@@ -0,0 +1,56 @@
-- ----------------------------
-- Table structure for ne_host
-- ----------------------------
DROP TABLE IF EXISTS "ne_host";
CREATE TABLE "ne_host" (
"id" integer NOT NULL,
"host_type" text(16),
"group_id" text(1),
"title" text(128),
"addr" text(128),
"port" integer(11),
"user" text(50),
"auth_mode" text(1),
"password" text(2000),
"private_key" text(6000),
"pass_phrase" text(2000),
"db_name" text(50),
"remark" text(500),
"create_by" text(50),
"create_time" integer(20),
"update_by" text(50),
"update_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table ne_host
-- ----------------------------
CREATE UNIQUE INDEX "uk_type_group_title"
ON "ne_host" (
"host_type" ASC,
"group_id" ASC,
"title" ASC
);
-- ----------------------------
-- Records of ne_host
-- ----------------------------
INSERT INTO "ne_host" VALUES (1, 'ssh', '1', 'OMC_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (2, 'telnet', '1', 'OMC_001_4100', '127.0.0.10', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (3, 'ssh', '1', 'IMS_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (4, 'telnet', '1', 'IMS_001_4100', '127.0.0.1', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (5, 'ssh', '1', 'AMF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (6, 'telnet', '1', 'AMF_001_4100', '127.0.0.9', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (7, 'ssh', '1', 'AUSF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (8, 'telnet', '1', 'AUSF_001_4100', '127.0.0.4', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (9, 'ssh', '1', 'UDM_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (10, 'telnet', '1', 'UDM_001_4100', '127.0.0.5', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (11, 'redis', '1', 'UDM_001_6379', '127.0.0.1', 6379, 'udmdb', '0', 'nO3fEhtuKuBkQE5ozsUhNfzn02vhnyxYTEiPn2CIlr4=', '', '', '0', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (12, 'ssh', '1', 'SMF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (13, 'telnet', '1', 'SMF_001_4100', '127.0.0.6', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (14, 'ssh', '1', 'PCF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (15, 'telnet', '1', 'PCF_001_4100', '127.0.0.7', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (20, 'ssh', '1', 'UPF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (21, 'telnet', '1', 'UPF_001_4100', '127.0.0.8', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
INSERT INTO "ne_host" VALUES (22, 'telnet', '1', 'UPF_001_5002', '127.0.0.8', 5002, 'admin', '0', '', '', '', '', '', 'system', 1729063407329, '', 0);

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for ne_host_cmd
-- ----------------------------
DROP TABLE IF EXISTS "ne_host_cmd";
CREATE TABLE "ne_host_cmd" (
"id" integer NOT NULL,
"cmd_type" text(16),
"group_id" text(2),
"title" text(50),
"command" text(500),
"remark" text(500),
"create_by" text(50),
"create_time" integer(20),
"update_by" text(50),
"update_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table ne_host_cmd
-- ----------------------------
CREATE UNIQUE INDEX "uk_host_type_group_title"
ON "ne_host_cmd" (
"cmd_type" ASC,
"group_id" ASC,
"title" ASC
);
-- ----------------------------
-- Records of ne_host_cmd
-- ----------------------------

View File

@@ -0,0 +1,47 @@
-- ----------------------------
-- Table structure for ne_info
-- ----------------------------
DROP TABLE IF EXISTS "ne_info";
CREATE TABLE "ne_info" (
"id" integer NOT NULL,
"ne_type" text(32) NOT NULL,
"ne_id" text(32) NOT NULL,
"rm_uid" text(40),
"ne_name" text(64),
"ip" text(128),
"port" integer(11),
"pv_flag" text(32),
"province" text(32),
"vendor_name" text(64),
"dn" text(255),
"ne_address" text(64),
"host_ids" text(64),
"status" integer(11),
"remark" text(255),
"create_by" text(50),
"create_time" integer(20),
"update_by" text(50),
"update_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table ne_info
-- ----------------------------
CREATE UNIQUE INDEX "ux_netype_neid"
ON "ne_info" (
"ne_type" ASC,
"ne_id" ASC
);
-- ----------------------------
-- Records of ne_info
-- ----------------------------
INSERT INTO "ne_info" VALUES (1, 'OMC', '001', '4400HXOMC001', 'OMC_001', '127.0.0.10', 33080, 'PNF', 'AreaNet', '-', '-', '-', '1,2', 0, '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_info" VALUES (2, 'IMS', '001', '4400HXIMS001', 'IMS_001', '127.0.0.1', 33030, 'PNF', 'AreaNet', '-', '-', '-', '3,4', 0, '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_info" VALUES (3, 'AMF', '001', '4400HXAMF001', 'AMF_001', '127.0.0.9', 33030, 'PNF', 'AreaNet', '-', '-', '', '5,6', 0, '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_info" VALUES (4, 'AUSF', '001', '4400HXAUSF001', 'AUSF_001', '127.0.0.4', 33030, 'PNF', 'AreaNet', '-', '-', '', '7,8', 0, '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_info" VALUES (5, 'UDM', '001', '4400HXUDM001', 'UDM_001', '127.0.0.5', 33030, 'PNF', 'AreaNet', '-', '-', '-', '9,10,11', 0, '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_info" VALUES (6, 'SMF', '001', '4400HXSMF001', 'SMF_001', '127.0.0.6', 33030, 'PNF', 'AreaNet', '-', '-', '-', '12,13', 0, '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_info" VALUES (7, 'PCF', '001', '4400HXPCF001', 'PCF_001', '127.0.0.7', 33030, 'PNF', 'AreaNet', '-', '-', '-', '14,15', 0, '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_info" VALUES (10, 'UPF', '001', '4400HXUPF001', 'UPF_001', '127.0.0.8', 33030, 'PNF', 'AreaNet', '-', '-', '', '20,21,22', 0, '', 'system', 1713928436971, '', 0);

View File

@@ -0,0 +1,41 @@
-- ----------------------------
-- Table structure for ne_license
-- ----------------------------
DROP TABLE IF EXISTS "ne_license";
CREATE TABLE "ne_license" (
"id" integer NOT NULL,
"ne_type" text(32) NOT NULL,
"ne_id" text(32) NOT NULL,
"activation_request_code" text(255) NOT NULL,
"license_path" text(255),
"serial_num" text(32),
"expiry_date" text(32),
"status" text(32),
"remark" text(255),
"create_by" text(50),
"create_time" integer(20),
"update_by" text(50),
"update_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table ne_license
-- ----------------------------
CREATE UNIQUE INDEX "uk_lic_type_id"
ON "ne_license" (
"ne_type" ASC,
"ne_id" ASC
);
-- ----------------------------
-- Records of ne_license
-- ----------------------------
INSERT INTO "ne_license" VALUES (1, 'OMC', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_license" VALUES (2, 'IMS', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_license" VALUES (3, 'AMF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_license" VALUES (4, 'AUSF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_license" VALUES (5, 'UDM', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_license" VALUES (6, 'SMF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_license" VALUES (7, 'PCF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
INSERT INTO "ne_license" VALUES (10, 'UPF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);

View File

@@ -0,0 +1,29 @@
-- ----------------------------
-- Table structure for ne_link
-- ----------------------------
DROP TABLE IF EXISTS "ne_link";
CREATE TABLE "ne_link" (
"id" integer NOT NULL,
"ne_type" text(32) NOT NULL,
"ne_id" text(32) NOT NULL,
"rm_uid" text(40),
"interface" text(16),
"status" text(255),
"created_at" text,
"updated_at" text,
"deleted_at" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table ne_link
-- ----------------------------
CREATE UNIQUE INDEX "idx_netype_neid"
ON "ne_link" (
"ne_type" ASC,
"ne_id" ASC
);
-- ----------------------------
-- Records of ne_link
-- ----------------------------

View File

@@ -0,0 +1,18 @@
-- ----------------------------
-- Table structure for ne_pool
-- ----------------------------
DROP TABLE IF EXISTS "ne_pool";
CREATE TABLE "ne_pool" (
"id" integer NOT NULL,
"name" text(255),
"ne_type" text(50) NOT NULL,
"ne_id" text(50) NOT NULL,
"rm_uid" text(50),
"balance" integer(11),
"update_time" text,
PRIMARY KEY ("id", "ne_type", "ne_id")
);
-- ----------------------------
-- Records of ne_pool
-- ----------------------------

View File

@@ -0,0 +1,31 @@
-- ----------------------------
-- Table structure for ne_software
-- ----------------------------
DROP TABLE IF EXISTS "ne_software";
CREATE TABLE "ne_software" (
"id" integer NOT NULL,
"ne_type" text(32) NOT NULL,
"name" text(128) NOT NULL,
"path" text(500),
"version" text(64) NOT NULL,
"description" text(500),
"create_by" text(50),
"create_time" integer(20),
"update_by" text(50),
"update_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table ne_software
-- ----------------------------
CREATE UNIQUE INDEX "uk_type_name_version"
ON "ne_software" (
"ne_type" ASC,
"name" ASC,
"version" ASC
);
-- ----------------------------
-- Records of ne_software
-- ----------------------------

View File

@@ -0,0 +1,32 @@
-- ----------------------------
-- Table structure for ne_state
-- ----------------------------
DROP TABLE IF EXISTS "ne_state";
CREATE TABLE "ne_state" (
"id" integer NOT NULL,
"ne_type" text(16),
"ne_id" text(32),
"version" text(16),
"capability" text(64),
"serial_num" text(16),
"expiry_date" text(10),
"cpu_usage" text,
"mem_usage" text,
"disk_space" text,
"timestamp" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table ne_state
-- ----------------------------
CREATE INDEX "idx_type_id_time"
ON "ne_state" (
"ne_type" ASC,
"ne_id" ASC,
"timestamp" ASC
);
-- ----------------------------
-- Records of ne_state
-- ----------------------------

View File

@@ -0,0 +1,45 @@
-- ----------------------------
-- Table structure for ne_version
-- ----------------------------
DROP TABLE IF EXISTS "ne_version";
CREATE TABLE "ne_version" (
"id" integer NOT NULL,
"ne_type" text(32) NOT NULL,
"ne_id" text(32) NOT NULL,
"name" text(128),
"version" text(64),
"path" text(255),
"pre_name" text(128),
"pre_version" text(64),
"pre_path" text(255),
"new_name" text(128),
"new_version" text(64),
"new_path" text(255),
"status" text(16),
"create_by" text(50),
"create_time" integer(20),
"update_by" text(50),
"update_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table ne_version
-- ----------------------------
CREATE UNIQUE INDEX "uk_ver_type_id"
ON "ne_version" (
"ne_type" ASC,
"ne_id" ASC
);
-- ----------------------------
-- Records of ne_version
-- ----------------------------
INSERT INTO "ne_version" VALUES (1, 'OMC', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
INSERT INTO "ne_version" VALUES (2, 'IMS', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
INSERT INTO "ne_version" VALUES (3, 'AMF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
INSERT INTO "ne_version" VALUES (4, 'AUSF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
INSERT INTO "ne_version" VALUES (5, 'UDM', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
INSERT INTO "ne_version" VALUES (6, 'SMF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
INSERT INTO "ne_version" VALUES (7, 'PCF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
INSERT INTO "ne_version" VALUES (10, 'UPF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);

View File

@@ -0,0 +1,26 @@
-- ----------------------------
-- Table structure for northbound_cm
-- ----------------------------
DROP TABLE IF EXISTS "northbound_cm";
CREATE TABLE "northbound_cm" (
"id" integer NOT NULL,
"timestamp" text,
"time_zone" text(10),
"vendor_name" text(65),
"ne_type" text(16),
"cm_version" text(32),
"rm_uid" text(32),
"ne_id" text(32),
"user_label" text(64),
"object_type" text(32),
"pv_flag" text(255),
"vm_id" text(128),
"vnf_instance_id" text(64),
"value_json" text,
"status" text(255) NOT NULL,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of northbound_cm
-- ----------------------------

View File

@@ -0,0 +1,24 @@
-- ----------------------------
-- Table structure for northbound_pm
-- ----------------------------
DROP TABLE IF EXISTS "northbound_pm";
CREATE TABLE "northbound_pm" (
"id" integer NOT NULL,
"date" text,
"index" integer(11),
"start_time" text,
"time_zone" text(16),
"ne_name" text(64),
"pm_version" text(16),
"period" text(6),
"rm_uid" text(64),
"ne_type" text(16),
"dn" text(255),
"datas" text,
"timestamp" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of northbound_pm
-- ----------------------------

View File

@@ -0,0 +1,24 @@
-- ----------------------------
-- Table structure for oauth2_client
-- ----------------------------
DROP TABLE IF EXISTS "oauth2_client";
CREATE TABLE "oauth2_client" (
"id" integer NOT NULL,
"client_id" text(32) NOT NULL,
"client_secret" text(64) NOT NULL,
"title" text(64),
"ip_white" text(255),
"del_flag" text(1),
"login_ip" text(128),
"login_time" integer,
"create_by" text(64),
"create_time" integer,
"update_by" text(64),
"update_time" integer,
"remark" text(200),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of oauth2_client
-- ----------------------------

View File

@@ -0,0 +1,20 @@
-- ----------------------------
-- Table structure for oauth2_log_login
-- ----------------------------
DROP TABLE IF EXISTS "oauth2_log_login";
CREATE TABLE "oauth2_log_login" (
"id" integer NOT NULL,
"client_id" text(32),
"login_ip" text(128),
"login_location" text(32),
"browser" text(64),
"os" text(64),
"status_flag" text(1),
"msg" text(255),
"login_time" integer,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of oauth2_log_login
-- ----------------------------

View File

@@ -0,0 +1,17 @@
-- ----------------------------
-- Table structure for param_value
-- ----------------------------
DROP TABLE IF EXISTS "param_value";
CREATE TABLE "param_value" (
"id" integer(11) NOT NULL,
"ne_type" text(32),
"ne_id" text(64) NOT NULL,
"flag" integer(4) NOT NULL,
"top_tag" text(32) NOT NULL,
"value_json" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of param_value
-- ----------------------------

View File

@@ -0,0 +1,23 @@
-- ----------------------------
-- Table structure for pm_custom_data
-- ----------------------------
DROP TABLE IF EXISTS "pm_custom_data";
CREATE TABLE "pm_custom_data" (
"id" integer NOT NULL,
"date" text,
"ne_name" text(64),
"rm_uid" text(64),
"ne_type" text(16),
"granul_option" text(255),
"object_type" text(32),
"kpi_id" text(64),
"start_time" text,
"end_time" text,
"value" integer,
"timestamp" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of pm_custom_data
-- ----------------------------

View File

@@ -0,0 +1,21 @@
-- ----------------------------
-- Table structure for pm_template
-- ----------------------------
DROP TABLE IF EXISTS "pm_template";
CREATE TABLE "pm_template" (
"id" integer NOT NULL,
"name" text(64),
"ne_type" text(16),
"object_type" text(16) NOT NULL,
"kpi_set" text,
"created_user" text(32),
"description" text(255),
"created_time" text,
"updata_time" text,
"kpi_id" text(64),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of pm_template
-- ----------------------------

View File

@@ -0,0 +1,46 @@
-- ----------------------------
-- Table structure for sys_config
-- ----------------------------
DROP TABLE IF EXISTS "sys_config";
CREATE TABLE "sys_config" (
"config_id" integer NOT NULL,
"config_name" text(64),
"config_key" text(64),
"config_value" text(500),
"config_type" text(1),
"del_flag" text(1),
"create_by" text(64),
"create_time" integer,
"update_by" text(64),
"update_time" integer,
"remark" text(500),
PRIMARY KEY ("config_id")
);
-- ----------------------------
-- Records of sys_config
-- ----------------------------
INSERT INTO "sys_config" VALUES (1, 'config.sys.user.initPassword', 'sys.user.initPassword', 'Abcd@1234..', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.initPasswordRemark');
INSERT INTO "sys_config" VALUES (2, 'config.sys.account.captchaEnabled', 'sys.account.captchaEnabled', 'false', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.account.captchaEnabledRemark');
INSERT INTO "sys_config" VALUES (3, 'config.sys.account.registerUser', 'sys.account.registerUser', 'false', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.account.registerUserRemark');
INSERT INTO "sys_config" VALUES (4, 'config.sys.user.maxRetryCount', 'sys.user.maxRetryCount', '5', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.maxRetryCountRemark');
INSERT INTO "sys_config" VALUES (5, 'config.sys.user.lockTime', 'sys.user.lockTime', '10', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.lockTimeRemark');
INSERT INTO "sys_config" VALUES (6, 'config.sys.officialUrl', 'sys.officialUrl', '#', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.officialUrlRemark');
INSERT INTO "sys_config" VALUES (7, 'config.sys.helpDoc', 'sys.helpDoc', '/static/helpDoc/{language}_doc.pdf', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.helpDocRemark');
INSERT INTO "sys_config" VALUES (8, 'sys.account.captchaType', 'sys.account.captchaType', 'math', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'sys.account.captchaTypeRemark');
INSERT INTO "sys_config" VALUES (9, 'config.sys.user.passwordPolicy', 'sys.user.passwordPolicy', '{"minLength":8,"specialChars":2,"uppercase":1,"lowercase":1}', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.passwordPolicyRemark');
INSERT INTO "sys_config" VALUES (10, 'config.sys.user.passwdExpire', 'sys.user.passwdExpire', '{"expHours":0,"alertHours":360}', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.passwdExpireRemark');
INSERT INTO "sys_config" VALUES (11, 'config.sys.user.fristPasswdChange', 'sys.user.fristPasswdChange', 'false', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.fristPasswdChangeRemark');
INSERT INTO "sys_config" VALUES (12, 'config.sys.user.passwdNotAllowedHistory', 'sys.user.passwdNotAllowedHistory', '0', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.passwdNotAllowedHistoryRemark');
INSERT INTO "sys_config" VALUES (21, 'config.monitor.sysResource.storeDays', 'monitor.sysResource.storeDays', '30', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.monitor.sysResource.storeDaysRemark');
INSERT INTO "sys_config" VALUES (22, 'config.sys.logo.type', 'sys.logo.type', 'brand', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.logo.typeRemark');
INSERT INTO "sys_config" VALUES (23, 'config.sys.logo.filePathIcon', 'sys.logo.filePathIcon', '/static/logo/{language}_icon.png', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.logo.filePathIconRemark');
INSERT INTO "sys_config" VALUES (24, 'config.sys.logo.filePathBrand', 'sys.logo.filePathBrand', '/static/logo/{language}_brand.png', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.logo.filePathBrandRemark');
INSERT INTO "sys_config" VALUES (25, 'config.sys.loginBackground', 'sys.loginBackground', '#', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.loginBackgroundRemark');
INSERT INTO "sys_config" VALUES (26, 'config.sys.title', 'sys.title', 'config.sys.titleValue', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.titleRemark');
INSERT INTO "sys_config" VALUES (27, 'config.sys.copyright', 'sys.copyright', 'config.sys.copyrightValue', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.copyrightRemark');
INSERT INTO "sys_config" VALUES (28, 'config.sys.i18nOpen', 'sys.i18n.open', 'true', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.i18nOpenRemark');
INSERT INTO "sys_config" VALUES (29, 'config.sys.i18nDefault', 'sys.i18n.default', 'en_US', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.i18nDefaultRemark');
INSERT INTO "sys_config" VALUES (30, 'config.sys.lockTime', 'sys.lockTime', '0', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.lockTimeRemark');
INSERT INTO "sys_config" VALUES (31, 'config.sys.homePage', 'sys.homePage', 'dashboard/overview/index', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.homePageRemark');
INSERT INTO "sys_config" VALUES (32, 'config.neData.backupDataFTP', 'neData.backupDataFTP', 'VXEECeDMoYhX29pqsb753ecJOnPfxB6XrEa9QdUrRqwKI7EmJei5HlvehvL+wL0Osjo3Y2Qs7ADA6eL3SrisiVXAVVXv38KMhvcSU9eaAzl/jrY4ahsq6a/eSbzxFDgE21US7/YnsyDRG7eGAc7W5Q==', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.neData.backupDataFTPRemark');

View File

@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for sys_dept
-- ----------------------------
DROP TABLE IF EXISTS "sys_dept";
CREATE TABLE "sys_dept" (
"dept_id" integer NOT NULL,
"parent_id" integer(20),
"ancestors" text(255),
"dept_name" text(255),
"dept_sort" integer(11),
"leader" text(32),
"phone" text(32),
"email" text(64),
"status_flag" text(1),
"del_flag" text(1),
"create_by" text(64),
"create_time" integer(20),
"update_by" text(64),
"update_time" integer(20),
PRIMARY KEY ("dept_id")
);
-- ----------------------------
-- Records of sys_dept
-- ----------------------------
INSERT INTO "sys_dept" VALUES (100, 0, '0', 'dept.root', 0, 'system', '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468);
INSERT INTO "sys_dept" VALUES (101, 100, '0,100', 'dept.root.item1', 1, 'system', '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468);

View File

@@ -0,0 +1,193 @@
-- ----------------------------
-- Table structure for sys_dict_data
-- ----------------------------
DROP TABLE IF EXISTS "sys_dict_data";
CREATE TABLE "sys_dict_data" (
"data_id" integer NOT NULL,
"dict_type" text(64) NOT NULL,
"data_label" text(255) NOT NULL,
"data_value" text(512) NOT NULL,
"data_sort" integer(11),
"tag_class" text(64),
"tag_type" text(12),
"status_flag" text(1),
"del_flag" text(1),
"create_by" text(64),
"create_time" integer(20),
"update_by" text(64),
"update_time" integer(20),
"remark" text(500),
PRIMARY KEY ("data_id")
);
-- ----------------------------
-- Records of sys_dict_data
-- ----------------------------
INSERT INTO "sys_dict_data" VALUES (1, 'sys_user_sex', 'dictData.sex.un', '0', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (2, 'sys_user_sex', 'dictData.sex.male', '1', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (3, 'sys_user_sex', 'dictData.sex.female', '2', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (4, 'sys_show_hide', 'dictData.show', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (5, 'sys_show_hide', 'dictData.hide', '0', 2, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (6, 'sys_normal_disable', 'dictData.normal', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (7, 'sys_normal_disable', 'dictData.disable', '0', 2, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (8, 'sys_yes_no', 'dictData.yes', 'Y', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (9, 'sys_yes_no', 'dictData.no', 'N', 2, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (10, 'sys_common_status', 'dictData.success', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (11, 'sys_common_status', 'dictData.fail', '0', 2, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (12, 'sys_job_status', 'dictData.jobStatus.normal', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (13, 'sys_job_status', 'dictData.jobStatus.pause', '0', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (14, 'sys_job_group', 'dictData.jobGroup.Default', 'DEFAULT', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (15, 'sys_job_group', 'dictData.jobGroup.System', 'SYSTEM', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (16, 'sys_oper_type', 'dictData.operType.other', '0', 1, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (17, 'sys_oper_type', 'dictData.operType.add', '1', 2, '', 'blue', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (18, 'sys_oper_type', 'dictData.operType.edit', '2', 3, '', 'cyan', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (19, 'sys_oper_type', 'dictData.operType.delete', '3', 4, '', 'red', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (20, 'sys_oper_type', 'dictData.operType.auth', '4', 5, '', '#108ee9', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (21, 'sys_oper_type', 'dictData.operType.export', '5', 6, '', 'orange', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (22, 'sys_oper_type', 'dictData.operType.import', '6', 7, '', 'orange', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (23, 'sys_oper_type', 'dictData.operType.forced quit', '7', 8, '', 'default', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (24, 'sys_oper_type', 'dictData.operType.clear', '8', 9, '', '#f50', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (25, 'trace_type', 'dictData.trace.interface', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (26, 'trace_type', 'dictData.trace.device', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (27, 'trace_type', 'dictData.trace.user', '3', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (28, 'sys_job_save_log', 'dictData.jobSaveLog.no', '0', 8, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (29, 'sys_job_save_log', 'dictData.jobSaveLog.yes', '1', 9, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (30, 'ne_host_type', 'dictData.ne_host_type.redis', 'redis', 2, '', 'magenta', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (31, 'alarm_status', 'dictData.alarmStatus.history', '0', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (32, 'alarm_status', 'dictData.alarmStatus.active', '1', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (33, 'sys_role_datascope', 'dictData.datascope.all', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (34, 'sys_role_datascope', 'dictData.datascope.custom', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (35, 'sys_role_datascope', 'dictData.datascope.dept', '3', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (36, 'sys_role_datascope', 'dictData.datascope.deptAndChid', '4', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (37, 'sys_role_datascope', 'dictData.datascope.self', '5', 5, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (38, 'active_alarm_type', 'dictData.active_alarm_type.communication', '1', 1, '', 'gold', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (39, 'active_alarm_type', 'dictData.active_alarm_type.equipment', '2', 2, '', 'cyan', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (40, 'active_alarm_type', 'dictData.active_alarm_type.processing', '3', 3, '', 'blue ', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (41, 'active_alarm_type', 'dictData.active_alarm_type.environmental', '4', 4, '', 'yellow', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (42, 'active_alarm_type', 'dictData.active_alarm_type.qualityOfService', '5', 5, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (43, 'active_clear_type', 'dictData.active_clear_type.notCleared', '0', 0, '', 'processing', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (44, 'active_clear_type', 'dictData.active_clear_type.auto', '1', 1, '', 'gold', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (45, 'active_clear_type', 'dictData.active_clear_type.hand', '2', 2, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (46, 'active_ack_state', 'dictData.active_ack_state.unconfirmed', '0', 0, '', 'processing', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (47, 'active_ack_state', 'dictData.active_ack_state.confirmed', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (48, 'active_alarm_severity', 'dictData.active_alarm_severity.critical', '1', 1, '', 'gold', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (49, 'active_alarm_severity', 'dictData.active_alarm_severity.major', '2', 2, '', 'cyan', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (50, 'active_alarm_severity', 'dictData.active_alarm_severity.minor', '3', 3, '', 'blue ', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (51, 'active_alarm_severity', 'dictData.active_alarm_severity.warning', '4', 4, '', 'yellow', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (52, 'active_alarm_severity', 'dictData.active_alarm_severity.event', '5', 5, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (53, 'index_status', 'dictType.index_status.normal', 'normal', 1, '#91cc75', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (54, 'index_status', 'dictType.index_status.abnormal', 'abnormal', 2, '#ee6666', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (55, 'cdr_sip_code', 'dictData.cdr_sip_code.200', '200', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (56, 'cdr_sip_code', 'dictData.cdr_sip_code.403', '403', 5, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (57, 'cdr_sip_code', 'dictData.cdr_sip_code.408', '408', 13, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (58, 'cdr_sip_code', 'dictData.cdr_sip_code.500', '500', 16, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (59, 'cdr_call_type', 'dictData.cdr_call_type.audio', 'audio', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (60, 'cdr_call_type', 'dictData.cdr_call_type.video', 'video', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (61, 'ue_auth_code', 'dictData.ue_auth_code.200', '200', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (62, 'ue_auth_code', 'dictData.ue_auth_code.001', '001', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (63, 'ue_auth_code', 'dictData.ue_auth_code.002', '002', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (64, 'ue_auth_code', 'dictData.ue_auth_code.003', '003', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (65, 'ue_auth_code', 'dictData.ue_auth_code.004', '004', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (66, 'ue_auth_code', 'dictData.ue_auth_code.005', '005', 5, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (67, 'ue_auth_code', 'dictData.ue_auth_code.006', '006', 6, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (68, 'ue_auth_code', 'dictData.ue_auth_code.007', '007', 7, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (69, 'ue_event_type', 'dictData.ue_event_type.auth', 'auth-result', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (70, 'ue_event_type', 'dictData.ue_event_type.detach', 'detach', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (71, 'ue_event_type', 'dictData.ue_event_type.state', 'cm-state', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (72, 'ue_event_cm_state', 'dictData.ue_event_cm_state.connected', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (73, 'ue_event_cm_state', 'dictData.ue_event_cm_state.idle', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (74, 'ue_event_cm_state', 'dictData.ue_event_cm_state.inactive', '3', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (75, 'cdr_sip_code', 'dictData.cdr_sip_code.404', '404', 6, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (76, 'cdr_sip_code', 'dictData.cdr_sip_code.487', '487', 12, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (77, 'cdr_sip_code', 'dictData.cdr_sip_code.503', '503', 17, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (78, 'cdr_sip_code', 'dictData.cdr_sip_code.504', '504', 18, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (79, 'cdr_sip_code', 'dictData.cdr_sip_code.603', '603', 21, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (80, 'cdr_sip_code', 'dictData.cdr_sip_code.606', '606', 22, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (81, 'cdr_sip_code', 'dictData.cdr_sip_code.202', '202', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (82, 'cdr_call_type', 'dictData.cdr_call_type.sms', 'sms', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (83, 'cdr_sip_code', 'dictData.cdr_sip_code.488', '488', 14, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (84, 'cdr_sip_code', 'dictData.cdr_sip_code.0', '0', 99, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (85, 'ne_host_type', 'dictData.ne_host_type.ssh', 'ssh', 0, '', 'blue', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (86, 'ne_host_type', 'dictData.ne_host_type.telnet', 'telnet', 1, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (87, 'ne_host_groupId', 'dictData.ne_host_groupId.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (88, 'ne_host_groupId', 'dictData.ne_host_groupId.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (89, 'ne_host_groupId', 'dictData.ne_host_groupId.2', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (90, 'ne_host_authMode', 'dictData.ne_host_authMode.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (91, 'ne_host_authMode', 'dictData.ne_host_authMode.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (92, 'ne_host_cmd_groupId', 'dictData.ne_host_cmd_groupId.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (93, 'ne_host_cmd_groupId', 'dictData.ne_host_cmd_groupId.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (94, 'ne_info_status', 'dictData.ne_info_status.0', '0', 0, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (95, 'ne_info_status', 'dictData.ne_info_status.1', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (96, 'ne_info_status', 'dictData.ne_info_status.2', '2', 2, '', 'orange', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (97, 'ne_info_status', 'dictData.ne_info_status.3', '3', 3, '', 'blue', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (98, 'ne_license_status', 'dictData.ne_license_status.0', '0', 0, '', 'warning', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (99, 'ne_license_status', 'dictData.ne_license_status.1', '1', 1, '', 'processing', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (100, 'ne_host_authMode', 'dictData.ne_host_authMode.2', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (101, 'ne_version_status', 'dictData.ne_version_status.0', '0', 0, '', 'default', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (102, 'ne_version_status', 'dictData.ne_version_status.1', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (103, 'ne_version_status', 'dictData.ne_version_status.2', '2', 1, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (104, 'ne_version_status', 'dictData.ne_version_status.3', '3', 1, '', 'processing', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (105, 'cdr_cause_code', 'dictData.cdr_cause_code.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (106, 'cdr_cause_code', 'dictData.cdr_cause_code.8', '8', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (107, 'cdr_cause_code', 'dictData.cdr_cause_code.10', '10', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (108, 'cdr_cause_code', 'dictData.cdr_cause_code.21', '21', 10, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (109, 'cdr_cause_code', 'dictData.cdr_cause_code.22', '22', 11, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (110, 'cdr_cause_code', 'dictData.cdr_cause_code.27', '27', 12, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (111, 'cdr_cause_code', 'dictData.cdr_cause_code.28', '28', 13, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (112, 'cdr_cause_code', 'dictData.cdr_cause_code.29', '29', 14, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (113, 'cdr_cause_code', 'dictData.cdr_cause_code.30', '30', 15, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (114, 'cdr_cause_code', 'dictData.cdr_cause_code.38', '38', 16, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (115, 'cdr_cause_code', 'dictData.cdr_cause_code.41', '41', 20, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (116, 'cdr_cause_code', 'dictData.cdr_cause_code.41', '41', 21, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (117, 'cdr_cause_code', 'dictData.cdr_cause_code.42', '42', 22, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (118, 'cdr_cause_code', 'dictData.cdr_cause_code.47', '47', 23, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (119, 'cdr_cause_code', 'dictData.cdr_cause_code.50', '50', 30, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (120, 'trace_msg_type', 'dictData.trace_msg_type.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (121, 'trace_msg_type', 'dictData.trace_msg_type.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (122, 'trace_msg_direct', 'dictData.trace_msg_direct.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (123, 'trace_msg_direct', 'dictData.trace_msg_direct.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (124, 'trace_interfaces', 'dictData.trace_interfaces.1', 'N1', 1, '', '', '0', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (125, 'trace_interfaces', 'dictData.trace_interfaces.2', 'N2', 2, '', '', '0', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (126, 'trace_interfaces', 'dictData.trace_interfaces.3', 'N1/N2', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (127, 'trace_interfaces', 'dictData.trace_interfaces.4', 'N4', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (128, 'trace_interfaces', 'dictData.trace_interfaces.8', 'N8', 8, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (129, 'trace_interfaces', 'dictData.trace_interfaces.10', 'N10', 10, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (130, 'trace_interfaces', 'dictData.trace_interfaces.11', 'N11', 11, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (131, 'trace_interfaces', 'dictData.trace_interfaces.12', 'N12', 12, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (132, 'trace_interfaces', 'dictData.trace_interfaces.13', 'N13', 13, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (133, 'trace_interfaces', 'dictData.trace_interfaces.7', 'N7', 7, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (134, 'trace_interfaces', 'dictData.trace_interfaces.15', 'N15', 15, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (135, 'trace_interfaces', 'dictData.trace_interfaces.17', 'N17', 17, '', '', '0', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (136, 'trace_interfaces', 'dictData.trace_interfaces.20', 'N20', 20, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (137, 'trace_interfaces', 'dictData.trace_interfaces.22', 'N22', 22, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (138, 'trace_interfaces', 'dictData.trace_interfaces.40', 'N40', 40, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (139, 'cdr_sip_code', 'dictData.cdr_sip_code.302', '302', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (140, 'cdr_sip_code', 'dictData.cdr_sip_code.402', '402', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (141, 'cdr_sip_code', 'dictData.cdr_sip_code.480', '480', 7, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (142, 'cdr_sip_code', 'dictData.cdr_sip_code.481', '481', 8, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (143, 'cdr_sip_code', 'dictData.cdr_sip_code.482', '482', 9, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (144, 'cdr_sip_code', 'dictData.cdr_sip_code.486', '486', 11, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (145, 'cdr_sip_code', 'dictData.cdr_sip_code.489', '489', 15, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (146, 'cdr_sip_code', 'dictData.cdr_sip_code.580', '580', 19, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (147, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.0', '0', 99, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (148, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.200', '200', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (149, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.202', '202', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (150, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.302', '302', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (151, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.402', '402', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (152, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.403', '403', 5, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (153, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.404', '404', 6, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (154, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.480', '480', 7, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (155, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.481', '481', 8, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (156, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.482', '482', 9, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (157, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.486', '486', 11, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (158, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.487', '487', 12, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (159, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.408', '408', 13, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (160, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.488', '488', 14, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (161, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.489', '489', 15, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (162, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.500', '500', 16, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (163, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.503', '503', 17, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (164, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.504', '504', 18, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (165, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.580', '580', 19, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (166, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.603', '603', 21, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_data" VALUES (167, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.606', '606', 22, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');

View File

@@ -0,0 +1,54 @@
-- ----------------------------
-- Table structure for sys_dict_type
-- ----------------------------
DROP TABLE IF EXISTS "sys_dict_type";
CREATE TABLE "sys_dict_type" (
"dict_id" integer NOT NULL,
"dict_name" text(64) NOT NULL,
"dict_type" text(64) NOT NULL,
"status_flag" text(1),
"del_flag" text(1),
"create_by" text(64),
"create_time" integer(20),
"update_by" text(64),
"update_time" integer(20),
"remark" text(500),
PRIMARY KEY ("dict_id")
);
-- ----------------------------
-- Records of sys_dict_type
-- ----------------------------
INSERT INTO "sys_dict_type" VALUES (1, 'dictType.sys_user_sex', 'sys_user_sex', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_user_sex_remark');
INSERT INTO "sys_dict_type" VALUES (2, 'dictType.sys_show_hide', 'sys_show_hide', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_show_hide_remark');
INSERT INTO "sys_dict_type" VALUES (3, 'dictType.sys_normal_disable', 'sys_normal_disable', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_normal_disable_remark');
INSERT INTO "sys_dict_type" VALUES (4, 'dictType.sys_job_status', 'sys_job_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_job_status_remark');
INSERT INTO "sys_dict_type" VALUES (5, 'dictType.sys_job_group', 'sys_job_group', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_job_group_remark');
INSERT INTO "sys_dict_type" VALUES (6, 'dictType.sys_yes_no', 'sys_yes_no', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_yes_no_remark');
INSERT INTO "sys_dict_type" VALUES (9, 'dictType.sys_oper_type', 'sys_oper_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_oper_type_remark');
INSERT INTO "sys_dict_type" VALUES (10, 'dictType.sys_common_status', 'sys_common_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_common_status_remark');
INSERT INTO "sys_dict_type" VALUES (50, 'dictType.trace_type', 'trace_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.trace_type_remark');
INSERT INTO "sys_dict_type" VALUES (51, 'dictType.alarm_status', 'alarm_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.alarm_status_remark');
INSERT INTO "sys_dict_type" VALUES (52, 'dictType.ne_version_status', 'ne_version_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.ne_version_status_remark');
INSERT INTO "sys_dict_type" VALUES (53, 'dictType.sys_role_datascope', 'sys_role_datascope', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_role_datascope_remark');
INSERT INTO "sys_dict_type" VALUES (54, 'dictType.active_alarm_type', 'active_alarm_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.active_alarm_type_remark');
INSERT INTO "sys_dict_type" VALUES (55, 'dictType.active_clear_type', 'active_clear_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.active_clear_type_remark');
INSERT INTO "sys_dict_type" VALUES (56, 'dictType.active_ack_state', 'active_ack_state', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.active_ack_state_remark');
INSERT INTO "sys_dict_type" VALUES (57, 'dictType.active_alarm_severity', 'active_alarm_severity', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.active_alarm_severity_remark');
INSERT INTO "sys_dict_type" VALUES (58, 'dictType.index_status', 'index_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.index_status_remark');
INSERT INTO "sys_dict_type" VALUES (59, 'dictType.cdr_sip_code', 'cdr_sip_code', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (60, 'dictType.cdr_call_type', 'cdr_call_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (61, 'dictType.ue_auth_code', 'ue_auth_code', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (62, 'dictType.ue_event_type', 'ue_event_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (63, 'dictType.ue_event_cm_state', 'ue_event_cm_state', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (64, 'dictType.ne_host_type', 'ne_host_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (65, 'dictType.ne_host_groupId', 'ne_host_groupId', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (66, 'dictType.ne_host_authMode', 'ne_host_authMode', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (67, 'dictType.ne_host_cmd_groupId', 'ne_host_cmd_groupId', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (68, 'dictType.ne_info_status', 'ne_info_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (69, 'dictType.ne_license_status', 'ne_license_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (70, 'dictType.cdr_cause_code', 'cdr_cause_code', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (71, 'dictType.trace_msg_type', 'trace_msg_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (72, 'dictType.trace_msg_direct', 'trace_msg_direct', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (73, 'dictType.trace_interfaces', 'trace_interfaces', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
INSERT INTO "sys_dict_type" VALUES (74, 'dictType.cdr_sip_code_cause', 'cdr_sip_code_cause', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');

View File

@@ -0,0 +1,845 @@
-- ----------------------------
-- Table structure for sys_i18n
-- ----------------------------
DROP TABLE IF EXISTS "sys_i18n";
CREATE TABLE "sys_i18n" (
"id" integer NOT NULL,
"key_lable" text(255) NOT NULL,
"value_zh" text(255),
"value_en" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of sys_i18n
-- ----------------------------
INSERT INTO "sys_i18n" VALUES (1, 'i18n', '中文', 'English');
INSERT INTO "sys_i18n" VALUES (2, 'hello', '你好', 'Hello');
INSERT INTO "sys_i18n" VALUES (3, 'menu.system', '系统', 'System');
INSERT INTO "sys_i18n" VALUES (4, 'menu.monitor', '监控', 'Monitor');
INSERT INTO "sys_i18n" VALUES (5, 'menu.tools', '工具', 'Tools');
INSERT INTO "sys_i18n" VALUES (6, 'menu.ne', '网元', 'NE');
INSERT INTO "sys_i18n" VALUES (7, 'menu.ue', '终端', 'UE');
INSERT INTO "sys_i18n" VALUES (8, 'menu.systemRemark', '系统管理目录', 'System Management Catalog');
INSERT INTO "sys_i18n" VALUES (9, 'menu.monitorRemark', '系统监控目录', 'System Monitor Catalog');
INSERT INTO "sys_i18n" VALUES (10, 'menu.toolsRemark', '系统工具目录', 'System Tools Catalog');
INSERT INTO "sys_i18n" VALUES (11, 'menu.neRemark', '网元配置管理目录', 'NE Configuration Management Catalog');
INSERT INTO "sys_i18n" VALUES (12, 'menu.ueRemark', '网元终端信息目录', 'Network Element Terminal Information Catalog');
INSERT INTO "sys_i18n" VALUES (13, 'menu.security.user', '用户管理', 'User Management');
INSERT INTO "sys_i18n" VALUES (14, 'menu.security.role', '角色管理', 'Role Management');
INSERT INTO "sys_i18n" VALUES (15, 'menu.security.roleUser', '分配角色', 'Assigning Roles');
INSERT INTO "sys_i18n" VALUES (16, 'menu.system.menu', '菜单管理', 'Menu Management');
INSERT INTO "sys_i18n" VALUES (17, 'menu.security.dept', '部门管理', 'Department Management');
INSERT INTO "sys_i18n" VALUES (18, 'menu.security.post', '岗位管理', 'Position Management');
INSERT INTO "sys_i18n" VALUES (19, 'menu.system.dictType', '字典管理', 'Dictionary Management');
INSERT INTO "sys_i18n" VALUES (20, 'menu.system.dictData', '字典数据', 'Dictionary Data');
INSERT INTO "sys_i18n" VALUES (21, 'menu.system.paramSet', '参数设置', 'Parameter Settings');
INSERT INTO "sys_i18n" VALUES (22, 'menu.system.systemLog', '系统日志', 'System Log');
INSERT INTO "sys_i18n" VALUES (23, 'menu.system.systemInfo', '系统信息', 'System Information');
INSERT INTO "sys_i18n" VALUES (24, 'menu.system.cacheInfo', '缓存信息', 'Cache Information');
INSERT INTO "sys_i18n" VALUES (25, 'menu.system.cache', '缓存管理', 'Cache Management');
INSERT INTO "sys_i18n" VALUES (26, 'menu.security.onlineUser', '在线用户', 'Online Users');
INSERT INTO "sys_i18n" VALUES (27, 'menu.system.job', '调度任务', 'Scheduling Tasks');
INSERT INTO "sys_i18n" VALUES (28, 'menu.system.jobLog', '调度日志', 'Scheduling Logs');
INSERT INTO "sys_i18n" VALUES (29, 'menu.tools.help', '帮助文档', 'Help Documentation');
INSERT INTO "sys_i18n" VALUES (30, 'menu.log.operat', '操作日志', 'Operation logs');
INSERT INTO "sys_i18n" VALUES (31, 'menu.log.login', '安全日志', 'Security logs');
INSERT INTO "sys_i18n" VALUES (32, 'menu.security.userRemark', '用户管理菜单', 'User Management Menu');
INSERT INTO "sys_i18n" VALUES (33, 'menu.security.roleRemark', '角色管理菜单', 'Role Management Menu');
INSERT INTO "sys_i18n" VALUES (34, 'menu.security.roleUserRemark', '分配角色内嵌隐藏菜单', 'Assign Roles Embedded Hidden Menu');
INSERT INTO "sys_i18n" VALUES (35, 'menu.system.menuRemark', '菜单管理菜单', 'Menu Management Menu');
INSERT INTO "sys_i18n" VALUES (36, 'menu.security.deptRemark', '部门管理菜单', 'Department management menu');
INSERT INTO "sys_i18n" VALUES (37, 'menu.security.postRemark', '岗位管理菜单', 'Job Management Menu');
INSERT INTO "sys_i18n" VALUES (38, 'menu.system.dictTypeRemark', '字典管理菜单', 'Dictionary management menu');
INSERT INTO "sys_i18n" VALUES (39, 'menu.system.dictDataRemark', '字典数据内嵌隐藏菜单', 'Dictionary data embedded hidden menu');
INSERT INTO "sys_i18n" VALUES (40, 'menu.system.paramSetRemark', '参数设置菜单', 'Parameter setting menu');
INSERT INTO "sys_i18n" VALUES (41, 'menu.system.systemLogRemark', '系统日志目录', 'System Log Catalog');
INSERT INTO "sys_i18n" VALUES (42, 'menu.system.systemInfoRemark', '系统信息菜单', 'System information menu');
INSERT INTO "sys_i18n" VALUES (43, 'menu.system.cacheInfoRemark', '缓存信息菜单', 'Cache Information Menu');
INSERT INTO "sys_i18n" VALUES (44, 'menu.system.cacheRemark', '缓存列表菜单', 'Cache List Menu');
INSERT INTO "sys_i18n" VALUES (45, 'menu.security.onlineUserRemark', '在线用户菜单', 'Online User Menu');
INSERT INTO "sys_i18n" VALUES (46, 'menu.system.jobRemark', '调度任务菜单', 'Scheduling Tasks menu');
INSERT INTO "sys_i18n" VALUES (47, 'menu.system.jobLogRemark', '调度日志内嵌隐藏菜单', 'Scheduling Log Embedded Hidden Menu');
INSERT INTO "sys_i18n" VALUES (48, 'menu.tools.helpRemark', '帮助文档菜单', 'Help file menu');
INSERT INTO "sys_i18n" VALUES (49, 'menu.log.operatRemark', '操作日志菜单', 'Operation log menu');
INSERT INTO "sys_i18n" VALUES (50, 'menu.log.loginRemark', '登录日志菜单', 'Login log menu');
INSERT INTO "sys_i18n" VALUES (51, 'menu.common.query', '查询', 'Inquiry');
INSERT INTO "sys_i18n" VALUES (52, 'menu.common.add', '新增', 'Add');
INSERT INTO "sys_i18n" VALUES (53, 'menu.common.edit', '修改', 'Modify');
INSERT INTO "sys_i18n" VALUES (54, 'menu.common.delete', '删除', 'Delete');
INSERT INTO "sys_i18n" VALUES (55, 'menu.common.export', '导出', 'Export');
INSERT INTO "sys_i18n" VALUES (56, 'menu.common.import', '导入', 'Import');
INSERT INTO "sys_i18n" VALUES (57, 'menu.common.resetPwd', '重置密码', 'Reset Password');
INSERT INTO "sys_i18n" VALUES (58, 'menu.common.unlock', '账户解锁', 'Account Unlock');
INSERT INTO "sys_i18n" VALUES (59, 'menu.forcedQuit.batch ', '批量强退', 'Batch Undo');
INSERT INTO "sys_i18n" VALUES (60, 'menu.forcedQuit.single', '单条强退', 'Individual Forced Retirement');
INSERT INTO "sys_i18n" VALUES (61, 'menu.neData.udmAuth', 'UDM鉴权用户', 'UDM Authentication');
INSERT INTO "sys_i18n" VALUES (62, 'menu.neData.udmSub', 'UDM签约用户', 'UDM Subscribers');
INSERT INTO "sys_i18n" VALUES (63, 'menu.neData.udmVOIP', 'VOIP鉴权用户', 'VOIP Authentication');
INSERT INTO "sys_i18n" VALUES (64, 'menu.neData.udmVolte', 'IMS签约用户', 'IMS Subscribers');
INSERT INTO "sys_i18n" VALUES (65, 'menu.neData.imsSub', 'IMS在线用户', 'IMS Online Users');
INSERT INTO "sys_i18n" VALUES (66, 'menu.neData.smfSub', 'UE在线信息', 'UE Online Information');
INSERT INTO "sys_i18n" VALUES (67, 'menu.neData.baseOnline', '基站在线', 'Radio Online');
INSERT INTO "sys_i18n" VALUES (68, 'menu.trace', '跟踪', 'Trace');
INSERT INTO "sys_i18n" VALUES (69, 'menu.trace.task', '网元跟踪任务', 'NE Trace Task');
INSERT INTO "sys_i18n" VALUES (70, 'menu.trace.taskData', '网元跟踪任务数据', 'NE Trace Task Data');
INSERT INTO "sys_i18n" VALUES (71, 'menu.trace.pcap', '信令抓包', 'Signaling Capture');
INSERT INTO "sys_i18n" VALUES (72, 'menu.fault', '监控', 'Monitor');
INSERT INTO "sys_i18n" VALUES (73, 'config.neData.backupDataFTP', '备份网元数据-同步FTP服务', 'Backup NE Data - Sync Data FTP Service');
INSERT INTO "sys_i18n" VALUES (74, 'config.neData.backupDataFTPRemark', '请通过系统页面进行设置FTP信息', 'Please set the FTP information through the system page.');
INSERT INTO "sys_i18n" VALUES (75, 'job.backup_export_table_sys_log_operate_remark', 'hour: 数据时间从任务执行时间前的小时数
tableName: 数据表名
columns: 支持字段
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
tableName: data table name
columns: support fields
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
INSERT INTO "sys_i18n" VALUES (76, 'job.backup_export_table_cdr_event_ims_remark', 'hour: 数据时间从任务执行时间前的小时数
tableName: 数据表名
columns: 支持字段
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
tableName: data table name
columns: support fields
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
INSERT INTO "sys_i18n" VALUES (77, 'job.backup_export_table_cdr_event_smf_remark', 'hour: 数据时间从任务执行时间前的小时数
tableName: 数据表名
columns: 支持字段
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
tableName: data table name
columns: support fields
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
INSERT INTO "sys_i18n" VALUES (78, 'menu.traceRemark', '跟踪管理目录', 'Tracking Management Menu');
INSERT INTO "sys_i18n" VALUES (79, 'menu.trace.taskRemark', '跟踪任务菜单', 'Tracking Task Menu');
INSERT INTO "sys_i18n" VALUES (80, 'config.sys.user.fristPasswdChange', '用户管理-首次登录密码修改', 'User Management-First Login Password Change');
INSERT INTO "sys_i18n" VALUES (81, 'menu.trace.pcapRemark', '信令抓包菜单', 'Signaling Capture Menu');
INSERT INTO "sys_i18n" VALUES (82, 'menu.faultRemark', '故障管理目录', 'Fault Management Catalog');
INSERT INTO "sys_i18n" VALUES (83, 'menu.fault.active', '活动告警', 'Active Alarms');
INSERT INTO "sys_i18n" VALUES (84, 'menu.log', '日志', 'Logs');
INSERT INTO "sys_i18n" VALUES (85, 'menu.log.mml', 'MML日志', 'MML Logs');
INSERT INTO "sys_i18n" VALUES (86, 'menu.log.alarm', '告警日志', 'Alarm Logs');
INSERT INTO "sys_i18n" VALUES (87, 'menu.log.forwarding', '告警前转日志', 'Alarm Forwarding Logs');
INSERT INTO "sys_i18n" VALUES (88, 'menu.log.set', '日志设置', 'Log Settings');
INSERT INTO "sys_i18n" VALUES (89, 'menu.monitor.sessionUser', '用户会话', 'User Sessions');
INSERT INTO "sys_i18n" VALUES (90, 'menu.fault.history', '历史告警', 'Historical Alarms');
INSERT INTO "sys_i18n" VALUES (91, 'menu.fault.set', '设置', 'Settings');
INSERT INTO "sys_i18n" VALUES (92, 'menu.perf', '性能', 'Performance');
INSERT INTO "sys_i18n" VALUES (93, 'menu.fault.activemRemark', '活动告警菜单', 'Active Alarm Menu');
INSERT INTO "sys_i18n" VALUES (94, 'menu.logRemark', '日志管理目录', 'Log Management Catalog');
INSERT INTO "sys_i18n" VALUES (95, 'menu.log.operatOldRemark', '操作日志旧layui菜单', 'Operation log old layui menu');
INSERT INTO "sys_i18n" VALUES (96, 'menu.log.mmlRemark', '操作MML日志', 'Operation MML Log');
INSERT INTO "sys_i18n" VALUES (97, 'menu.log.alarmRemark', '告警日志菜单', 'Alarm Log Menu');
INSERT INTO "sys_i18n" VALUES (98, 'menu.log.securityOldRemark', '安全日志旧layui菜单', 'Security Log Old Layui Menu');
INSERT INTO "sys_i18n" VALUES (99, 'menu.log.forwardingRemark', '告警前转日志菜单', 'Alarm forward log menu');
INSERT INTO "sys_i18n" VALUES (100, 'menu.log.setRemark', '日志设置菜单', 'Log Settings menu');
INSERT INTO "sys_i18n" VALUES (101, 'menu.monitor.sessionUserRemark', '用户会话旧layui菜单', 'User Session Old Layui Menu');
INSERT INTO "sys_i18n" VALUES (102, 'menu.fault.historyRemark', '历史告警菜单', 'Alarm history menu');
INSERT INTO "sys_i18n" VALUES (103, 'menu.fault.setRemark', '故障通用设置菜单', 'Fault General Setup Menu');
INSERT INTO "sys_i18n" VALUES (104, 'menu.perfRemark', '性能目录', 'Performance Catalog');
INSERT INTO "sys_i18n" VALUES (105, 'menu.perf.task', '任务管理', 'Performance Tasks');
INSERT INTO "sys_i18n" VALUES (106, 'menu.perf.data', '性能数据', 'Performance Data');
INSERT INTO "sys_i18n" VALUES (107, 'menu.perf.kpiOverView', '关键指标概览', 'Key Performance Overview');
INSERT INTO "sys_i18n" VALUES (108, 'menu.perf.threshold', '性能门限', 'Performance Thresholds');
INSERT INTO "sys_i18n" VALUES (109, 'menu.perf.kpi', '关键指标', 'Key Performance Indicators');
INSERT INTO "sys_i18n" VALUES (110, 'menu.perf.customTarget', '自定义指标', 'Custom Indicator Management');
INSERT INTO "sys_i18n" VALUES (111, 'menu.perf.kpiKeyTarget', '关键指标报表', 'Key Performance Reports');
INSERT INTO "sys_i18n" VALUES (112, 'menu.mml', 'MML', 'MML');
INSERT INTO "sys_i18n" VALUES (113, 'menu.mml.ne', '网元操作', 'NE Operation');
INSERT INTO "sys_i18n" VALUES (114, 'menu.mml.udm', 'UDM操作', 'UDM Operation');
INSERT INTO "sys_i18n" VALUES (115, 'menu.mml.set', 'MML设置', 'MML Settings');
INSERT INTO "sys_i18n" VALUES (116, 'menu.mml.omc', 'OMC操作', 'OMC Operation');
INSERT INTO "sys_i18n" VALUES (117, 'menu.perf.taskRemark', '任务管理菜单', 'Task Management Menu');
INSERT INTO "sys_i18n" VALUES (118, 'menu.perf.dataRemark', '性能数据菜单', 'Performance Data Menu');
INSERT INTO "sys_i18n" VALUES (119, 'menu.dashboard.smscCDR.content', '可见短信内容', 'Visible SMS content');
INSERT INTO "sys_i18n" VALUES (120, 'menu.perf.thresholdRemark', '性能门限菜单', 'Performance Threshold Menu');
INSERT INTO "sys_i18n" VALUES (121, 'menu.perf.kpiRemark', '黄金指标菜单', 'Key Performance Indicator Menu');
INSERT INTO "sys_i18n" VALUES (122, 'menu.perf.customTargetRemark', '自定义指标菜单', 'Custom Indicator Management Menu');
INSERT INTO "sys_i18n" VALUES (123, 'menu.dashboard.smfCDRByIMSI', '数据流量报表', 'Data Usage Report');
INSERT INTO "sys_i18n" VALUES (124, 'menu.mmlRemark', 'MML管理目录', 'MML Management Catalog');
INSERT INTO "sys_i18n" VALUES (125, 'menu.mml.neRemark', '网元操作菜单', 'Network Element Operations Menu');
INSERT INTO "sys_i18n" VALUES (126, 'menu.mml.udmRemark', '网元UDM用户数据菜单', 'Network Element UDM User Data Menu');
INSERT INTO "sys_i18n" VALUES (127, 'menu.mml.setRemark', 'MML设置菜单', 'MML Setup Menu');
INSERT INTO "sys_i18n" VALUES (128, 'menu.mml.omcRemark', 'OMC操作菜单', 'OMC Operation Menu');
INSERT INTO "sys_i18n" VALUES (129, 'menu.dashboard.sgwcCDR', '漫游数据话单', 'Roaming Data CDR');
INSERT INTO "sys_i18n" VALUES (130, 'menu.security', '安全', 'Security');
INSERT INTO "sys_i18n" VALUES (131, 'menu.system.systemSet', '系统设置', 'System Settings');
INSERT INTO "sys_i18n" VALUES (132, 'menu.system.systemResource', '系统资源', 'System Resources');
INSERT INTO "sys_i18n" VALUES (133, 'log.operate.title.sgwcCDR', '漫游数据话单', 'Roaming Data CDR');
INSERT INTO "sys_i18n" VALUES (134, 'menu.securityRemark', '安全管理目录', 'Security Management Catalog');
INSERT INTO "sys_i18n" VALUES (135, 'menu.system.systemSetRemark', '系统设置菜单', 'System Settings Menu');
INSERT INTO "sys_i18n" VALUES (136, 'menu.system.systemResourceRemark', '系统资源 cpu io network菜单', 'System Resources cpu io network menu');
INSERT INTO "sys_i18n" VALUES (137, 'dictData.offline', '离线', 'Offline');
INSERT INTO "sys_i18n" VALUES (138, 'dictData.online', '在线', 'Online');
INSERT INTO "sys_i18n" VALUES (139, 'menu.neData.baseStation', '基站状态', 'Radio State');
INSERT INTO "sys_i18n" VALUES (140, 'menu.noData', '没有可访问菜单数据!', 'There is no accessible menu data!');
INSERT INTO "sys_i18n" VALUES (141, 'menu.errNameExists', '操作菜单【{name}】失败,菜单名称已存在', 'Failed to operate menu [{name}], menu name already exists!');
INSERT INTO "sys_i18n" VALUES (142, 'menu.errPathExists', '操作菜单【{name}】失败,菜单路由地址已存在', 'Failed to operate menu [{name}], menu routing address already exists!');
INSERT INTO "sys_i18n" VALUES (143, 'menu.errFramePath', '操作菜单【{name}】失败非内部地址请以http(s)://开头', 'Failed to manipulate menu [{name}], non-internal address should start with http(s)://');
INSERT INTO "sys_i18n" VALUES (144, 'menu.errParentStatus', '上级菜单未启用!', 'The parent menu is not enabled!');
INSERT INTO "sys_i18n" VALUES (145, 'menu.errHasChildUse', '操作菜单【{name}】失败,存在使用子菜单数:{num}', 'Operation menu [{name}] failed, number of submenus in use exists: {num}');
INSERT INTO "sys_i18n" VALUES (146, 'menu.errHasRoleUse', '操作菜单【{name}】失败,菜单已分配给角色数:{num}', 'Operation menu [{name}] failed, number of roles the menu has been assigned to: {num}');
INSERT INTO "sys_i18n" VALUES (147, 'dictData.sex.un', '未选择', 'Not Selected');
INSERT INTO "sys_i18n" VALUES (148, 'dictData.sex.male', '', 'Male');
INSERT INTO "sys_i18n" VALUES (149, 'dictData.sex.female', '', 'Female');
INSERT INTO "sys_i18n" VALUES (150, 'dictData.show', '显示', 'Show');
INSERT INTO "sys_i18n" VALUES (151, 'dictData.hide', '隐藏', 'Hide');
INSERT INTO "sys_i18n" VALUES (152, 'dictData.normal', '正常', 'Active');
INSERT INTO "sys_i18n" VALUES (153, 'dictData.disable', '停用', 'Inactive');
INSERT INTO "sys_i18n" VALUES (154, 'dictData.yes', '', 'Yes');
INSERT INTO "sys_i18n" VALUES (155, 'dictData.no', '', 'No');
INSERT INTO "sys_i18n" VALUES (156, 'dictData.success', '成功', 'Successful');
INSERT INTO "sys_i18n" VALUES (157, 'dictData.fail', '失败', 'Failed');
INSERT INTO "sys_i18n" VALUES (158, 'dictData.jobStatus.normal', '正常', 'Active');
INSERT INTO "sys_i18n" VALUES (159, 'dictData.jobStatus.pause', '暂停', 'Inactive');
INSERT INTO "sys_i18n" VALUES (160, 'dictData.jobGroup.Default', '默认', 'Default');
INSERT INTO "sys_i18n" VALUES (161, 'dictData.jobGroup.System', '系统', 'System');
INSERT INTO "sys_i18n" VALUES (162, 'dictData.operType.other', '其他', 'Other');
INSERT INTO "sys_i18n" VALUES (163, 'dictData.operType.add', '新增', 'New');
INSERT INTO "sys_i18n" VALUES (164, 'dictData.operType.edit', '修改', 'Modify');
INSERT INTO "sys_i18n" VALUES (165, 'dictData.operType.delete', '删除', 'Delete');
INSERT INTO "sys_i18n" VALUES (166, 'dictData.operType.auth', '授权', 'Authorization');
INSERT INTO "sys_i18n" VALUES (167, 'dictData.operType.export', '导出', 'Export');
INSERT INTO "sys_i18n" VALUES (168, 'dictData.operType.import', '导入', 'Import');
INSERT INTO "sys_i18n" VALUES (169, 'dictData.operType.forced quit', '强退', 'Forced Retirement');
INSERT INTO "sys_i18n" VALUES (170, 'dictData.operType.clear', '清空', 'Clear');
INSERT INTO "sys_i18n" VALUES (171, 'dictData.trace.interface', '接口跟踪', 'Interface Tracing');
INSERT INTO "sys_i18n" VALUES (172, 'dictData.trace.device', '设备跟踪', 'Module Tracing');
INSERT INTO "sys_i18n" VALUES (173, 'dictData.trace.user', '用户跟踪', 'User Tracing');
INSERT INTO "sys_i18n" VALUES (174, 'nbState.export.id', '编号', 'ID');
INSERT INTO "sys_i18n" VALUES (175, 'nbState.export.name', '基站名称', 'Name');
INSERT INTO "sys_i18n" VALUES (176, 'nbState.export.position', '基站位置', 'Position');
INSERT INTO "sys_i18n" VALUES (177, 'nbState.export.address', 'IP地址', 'IP Address');
INSERT INTO "sys_i18n" VALUES (178, 'nbState.export.nbName', '设备名称', 'RanNodeName');
INSERT INTO "sys_i18n" VALUES (179, 'nbState.export.ueNum', '在线用户数', 'UE Number');
INSERT INTO "sys_i18n" VALUES (180, 'nbState.export.state', '基站状态', 'State');
INSERT INTO "sys_i18n" VALUES (181, 'nbState.export.time', '变更时间', 'Change Time');
INSERT INTO "sys_i18n" VALUES (182, 'neHost.okBySSHLink', '设置免密直连成功', 'Setting up a password-free direct connection is successful');
INSERT INTO "sys_i18n" VALUES (183, 'neHost.banNE', '禁止操作网元', 'Do not operate the NE');
INSERT INTO "sys_i18n" VALUES (184, 'dictData.ne_host_type.redis', 'Redis', 'Redis');
INSERT INTO "sys_i18n" VALUES (185, 'menu.tools.ping', '网络探测测试', 'Net Probing Test');
INSERT INTO "sys_i18n" VALUES (186, 'menu.tools.iperf', '网络性能测试', 'Net Performance Test');
INSERT INTO "sys_i18n" VALUES (187, 'dictData.jobSaveLog.no', '不记录', 'No Record');
INSERT INTO "sys_i18n" VALUES (188, 'dictData.jobSaveLog.yes', '记录', 'Recorded');
INSERT INTO "sys_i18n" VALUES (189, 'dictData.neVersionStatus.upload', '已上传', 'Uploaded');
INSERT INTO "sys_i18n" VALUES (190, 'dictData.neVersionStatus.inactive', '未激活', 'Inactivated');
INSERT INTO "sys_i18n" VALUES (191, 'dictData.neVersionStatus.active', '已激活', 'Activated');
INSERT INTO "sys_i18n" VALUES (192, 'dictData.alarmStatus.history', '历史告警', 'Historical Alarm');
INSERT INTO "sys_i18n" VALUES (193, 'dictData.alarmStatus.active', '活动告警', 'Active Alarm');
INSERT INTO "sys_i18n" VALUES (194, 'dictData.export.code', '数据代码', 'Data Code');
INSERT INTO "sys_i18n" VALUES (195, 'dictData.export.sort', '数据排序', 'Data Sort');
INSERT INTO "sys_i18n" VALUES (196, 'dictData.export.label', '数据标签', 'Data Key');
INSERT INTO "sys_i18n" VALUES (197, 'dictData.export.value', '数据键值', 'Data Value');
INSERT INTO "sys_i18n" VALUES (198, 'dictData.export.type', '数据排序', 'Data Type');
INSERT INTO "sys_i18n" VALUES (199, 'dictData.export.status', '数据状态', 'Status');
INSERT INTO "sys_i18n" VALUES (200, 'dictData.datascope.all', '全部数据权限', 'All data permissions');
INSERT INTO "sys_i18n" VALUES (201, 'dictData.datascope.custom', '自定数据权限', 'Customized Data Rights');
INSERT INTO "sys_i18n" VALUES (202, 'dictData.datascope.dept', '部门数据权限', 'Departmental Data Permissions');
INSERT INTO "sys_i18n" VALUES (203, 'dictData.datascope.deptAndChid', '部门及以下数据权限', 'Department and below');
INSERT INTO "sys_i18n" VALUES (204, 'dictData.datascope.self', '仅本人数据权限', 'Personal data access only');
INSERT INTO "sys_i18n" VALUES (205, 'dictData.noData', '没有可访问字典编码数据!', 'There is no accessible dictionary code data!');
INSERT INTO "sys_i18n" VALUES (206, 'dictData.errLabelExists', '操作数据【{name}】失败,该字典类型下标签名已存在', 'Failed to manipulate data [{name}], tag name already exists under this dictionary type!');
INSERT INTO "sys_i18n" VALUES (207, 'dictType.sys_user_sex', '用户性别', 'User Gender');
INSERT INTO "sys_i18n" VALUES (208, 'dictType.sys_show_hide', '菜单状态', 'Menu Status');
INSERT INTO "sys_i18n" VALUES (209, 'dictType.sys_normal_disable', '系统开关', 'System switches');
INSERT INTO "sys_i18n" VALUES (210, 'dictType.sys_job_status', '任务状态', 'Task Status');
INSERT INTO "sys_i18n" VALUES (211, 'dictType.sys_job_group', '任务分组', 'Task Grouping');
INSERT INTO "sys_i18n" VALUES (212, 'dictType.sys_yes_no', '系统是否', 'System or not');
INSERT INTO "sys_i18n" VALUES (213, 'dictType.sys_oper_type', '操作类型', 'Operation Type');
INSERT INTO "sys_i18n" VALUES (214, 'dictType.sys_common_status', '系统状态', 'System Status');
INSERT INTO "sys_i18n" VALUES (215, 'dictType.trace_type', '跟踪类型', 'Trace Types');
INSERT INTO "sys_i18n" VALUES (216, 'menu.tools.ps', '进程运行程序', 'Process Running Program');
INSERT INTO "sys_i18n" VALUES (217, 'dictType.alarm_status', '告警日志类型', 'Alarm Log Type');
INSERT INTO "sys_i18n" VALUES (218, 'menu.tools.net', '进程网络连接', 'Process Net Connection');
INSERT INTO "sys_i18n" VALUES (219, 'dictType.ne_version_status', '网元软件版本状态', 'Network element software version status');
INSERT INTO "sys_i18n" VALUES (220, 'dictType.sys_user_sex_remark', '用户性别列表', 'User gender list');
INSERT INTO "sys_i18n" VALUES (221, 'dictType.sys_show_hide_remark', '菜单状态列表', 'Menu Status List');
INSERT INTO "sys_i18n" VALUES (222, 'dictType.sys_normal_disable_remark', '系统开关列表', 'System switch list');
INSERT INTO "sys_i18n" VALUES (223, 'dictType.sys_job_status_remark', '任务状态列表', 'Task Status List');
INSERT INTO "sys_i18n" VALUES (224, 'dictType.sys_job_group_remark', '任务分组列表', 'Task Grouping List');
INSERT INTO "sys_i18n" VALUES (225, 'dictType.sys_yes_no_remark', '系统是否列表', 'System whether list');
INSERT INTO "sys_i18n" VALUES (226, 'dictType.sys_oper_type_remark', '操作类型列表', 'Operation type list');
INSERT INTO "sys_i18n" VALUES (227, 'dictType.sys_common_status_remark', '登录状态列表', 'Login Status List');
INSERT INTO "sys_i18n" VALUES (228, 'dictType.trace_type_remark', '跟踪类型', 'Trace Types');
INSERT INTO "sys_i18n" VALUES (229, 'dictType.alarm_status_remark', '告警日志状态类型', 'Alarm Log Status Type');
INSERT INTO "sys_i18n" VALUES (230, 'menu.trace.tshark', '信令分析', 'Signaling Analysis');
INSERT INTO "sys_i18n" VALUES (231, 'menu.trace.wireshark', '信令跟踪', 'Signaling Trace');
INSERT INTO "sys_i18n" VALUES (232, 'dictType.ne_version_status_remark', '网元软件版本状态', 'Network element software version status');
INSERT INTO "sys_i18n" VALUES (233, 'dictType.export.id', '字典编号', 'Dictionary Number');
INSERT INTO "sys_i18n" VALUES (234, 'dictType.export.name', '字典名称', 'Dictionary Name');
INSERT INTO "sys_i18n" VALUES (235, 'dictType.export.type', '字典类型', 'Dictionary Type');
INSERT INTO "sys_i18n" VALUES (236, 'dictType.export.status', '字典状态', 'Status');
INSERT INTO "sys_i18n" VALUES (237, 'dictType.sys_role_datascope', '系统角色数据范围', 'System Role Data Range');
INSERT INTO "sys_i18n" VALUES (238, 'dictType.sys_role_datascope_remark', '系统角色数据范围映射', 'System Role Data Range Mapping');
INSERT INTO "sys_i18n" VALUES (239, 'dictType.noData', '没有可访问字典类型数据!', 'There is no accessible dictionary type data!');
INSERT INTO "sys_i18n" VALUES (240, 'dictType.errNameExists', '操作字典【{name}】失败,字典名称已存在', 'Failed to manipulate dictionary [{name}], dictionary name already exists!');
INSERT INTO "sys_i18n" VALUES (241, 'dictType.errTypeExists', '操作字典【{name}】失败,字典类型已存在', 'Failed to manipulate dictionary [{name}], dictionary type already exists!');
INSERT INTO "sys_i18n" VALUES (242, 'dept.root', '系统', 'System');
INSERT INTO "sys_i18n" VALUES (243, 'dept.root.item1', '未分配', 'Unallocated');
INSERT INTO "sys_i18n" VALUES (244, 'dept.noData', '没有可访问部门数据!', 'There is no accessible department data!');
INSERT INTO "sys_i18n" VALUES (245, 'dept.errParentDelFlag', '上级部门【{name}】已删除,不允许新增', 'The parent department [{name}] has been deleted and is not allowed to be added.');
INSERT INTO "sys_i18n" VALUES (246, 'dept.errParentStatus', '上级部门【{name}】停用,不允许新增', 'Parent department [{name}] is deactivated, additions are not allowed!');
INSERT INTO "sys_i18n" VALUES (247, 'dept.errNameExists', '操作部门【{name}】失败,部门名称已存在', 'Manipulate department [{name}] failed, department name already exists!');
INSERT INTO "sys_i18n" VALUES (248, 'dept.errParentID', '操作部门【{name}】失败,上级部门不能是自己', 'Failed to operate department [{name}], the parent department cannot be itself.');
INSERT INTO "sys_i18n" VALUES (249, 'dept.errHasChildUse', '操作失败,该部门包含未停用的子部门数量:{num}', 'Operation failed, the department contains undeactivated sub-departments number: {num}');
INSERT INTO "sys_i18n" VALUES (250, 'dept.errHasUserUse', '不允许删除,部门已分配给用户数:{num}', 'Deletion is not allowed, number of users the department has been assigned to: {num}');
INSERT INTO "sys_i18n" VALUES (251, 'config.sys.user.initPassword', '用户管理-账号初始密码', 'User Management-Account Initial Password');
INSERT INTO "sys_i18n" VALUES (252, 'config.sys.account.captchaEnabled', '账号自助-验证码开关', 'Account self-help-Certification code switch');
INSERT INTO "sys_i18n" VALUES (253, 'config.sys.account.registerUser', '账号自助-是否开启用户注册功能', 'Account self-service-Whether to enable the user registration function');
INSERT INTO "sys_i18n" VALUES (254, 'config.sys.user.maxRetryCount', '用户管理-密码最大错误次数', 'User Management-Maximum number of password errors');
INSERT INTO "sys_i18n" VALUES (255, 'config.sys.user.lockTime', '用户管理-密码锁定时间', 'User Management-Password Lock Time');
INSERT INTO "sys_i18n" VALUES (256, 'config.monitor.sysResource.storeDays', '监控-系统资源-数据保留时长', 'Monitor-System Resources-Data retention time');
INSERT INTO "sys_i18n" VALUES (257, 'config.sys.logo.type', '系统设置-LOGO类型', 'System Settings-Logo Type');
INSERT INTO "sys_i18n" VALUES (258, 'config.sys.logo.filePathIcon', '系统设置-LOGO文件icon', 'System Settings-Logo File icon');
INSERT INTO "sys_i18n" VALUES (259, 'config.sys.logo.filePathBrand', '系统设置-LOGO文件brand', 'System Settings-Logo File Brand');
INSERT INTO "sys_i18n" VALUES (260, 'config.sys.loginBackground', '系统设置-登录界面背景', 'System Settings-Login Interface Background');
INSERT INTO "sys_i18n" VALUES (261, 'config.sys.title', '系统设置-系统名称', 'System Settings-System Name');
INSERT INTO "sys_i18n" VALUES (262, 'config.sys.copyright', '系统设置-版权声明', 'System Settings-Copyright Notice');
INSERT INTO "sys_i18n" VALUES (263, 'config.sys.user.initPasswordRemark', '导入用户初始化密码', 'Import user initialization password');
INSERT INTO "sys_i18n" VALUES (264, 'config.sys.account.captchaEnabledRemark', '是否开启验证码功能true开启false关闭', 'Whether to enable the verification code function (true on, false off)');
INSERT INTO "sys_i18n" VALUES (265, 'config.sys.account.registerUserRemark', '是否开启注册用户功能true开启false关闭', 'Whether to enable the function of registered users (true on, false off)');
INSERT INTO "sys_i18n" VALUES (266, 'config.sys.user.maxRetryCountRemark', '密码最大错误次数', 'Maximum number of password errors');
INSERT INTO "sys_i18n" VALUES (267, 'config.sys.user.lockTimeRemark', '密码锁定时间,单位分钟默认10分钟', 'Password lock time in minutes (default 10 minutes)');
INSERT INTO "sys_i18n" VALUES (268, 'config.monitor.sysResource.storeDaysRemark', '监控-系统资源-数据保留时长,单位天。根据当前日期,删除超过保留时长的日期数据信息。', 'Monitor-System Resources-Data retention time, in days. According to the current date, delete the date data information that exceeds the retention time.');
INSERT INTO "sys_i18n" VALUES (269, 'config.sys.logo.typeRemark', '全图brand
小图icon', 'Full image: brand
Small image: icon');
INSERT INTO "sys_i18n" VALUES (270, 'config.sys.logo.filePathIconRemark', '文件支持网络地址图片和内部上传的文件路径', 'File support for web address images and file paths for internal uploads');
INSERT INTO "sys_i18n" VALUES (271, 'config.sys.logo.filePathBrandRemark', '文件支持网络地址图片和内部上传的文件路径', 'File support for web address images and paths to internally uploaded files');
INSERT INTO "sys_i18n" VALUES (272, 'config.sys.loginBackgroundRemark', '文件支持网络地址图片和内部上传的文件路径,默认背景用#号', 'The file supports web address images and internal upload file paths with a # in the default background');
INSERT INTO "sys_i18n" VALUES (273, 'config.sys.titleRemark', '系统名称长度限制20位字符串', 'System name length limit of 20-digit string');
INSERT INTO "sys_i18n" VALUES (274, 'config.sys.copyrightRemark', '底脚固定条,左侧放置版权声明', 'Footer fixing strip with copyright notice on the left side');
INSERT INTO "sys_i18n" VALUES (275, 'config..export.id', '参数编号', 'ID');
INSERT INTO "sys_i18n" VALUES (276, 'config..export.name', '参数名称', 'Config Name');
INSERT INTO "sys_i18n" VALUES (277, 'config..export.key', '参数键名', 'Config Key');
INSERT INTO "sys_i18n" VALUES (278, 'config..export.value', '参数键值', 'Config Value');
INSERT INTO "sys_i18n" VALUES (279, 'config..export.type', '系统内置', 'Built In');
INSERT INTO "sys_i18n" VALUES (280, 'config..export.remark', '参数说明', 'Config Description');
INSERT INTO "sys_i18n" VALUES (281, 'config.sys.titleValue', '5G Core Network', '5G Core Network');
INSERT INTO "sys_i18n" VALUES (282, 'config.sys.copyrightValue', 'Copyright ©2025 5G Core Network', 'Copyright ©2025 5G Core Network');
INSERT INTO "sys_i18n" VALUES (283, 'config.noData', '没有可访问参数配置数据!', 'No parameter configuration data is accessible!');
INSERT INTO "sys_i18n" VALUES (284, 'config.errKey', '无效 key', 'Invalid key');
INSERT INTO "sys_i18n" VALUES (285, 'config.errValueEq', '变更状态与旧值相等!', 'Change state is equal to the old value!');
INSERT INTO "sys_i18n" VALUES (286, 'config.errKeyExists', '操作参数配置【{name}】失败,参数键名已存在', 'Failed to manipulate parameter configuration [{name}], parameter key name already exists!');
INSERT INTO "sys_i18n" VALUES (287, 'config.errDelete', '删除参数配置信息失败!', 'Deletion of parameter configuration information failed!');
INSERT INTO "sys_i18n" VALUES (288, 'config.errType', '操作含有内置参数,禁止删除!', 'The operation contains built-in parameters and deletion is prohibited!');
INSERT INTO "sys_i18n" VALUES (289, 'job.monitor_sys_resource', '监控-系统资源', 'Monitor-System Resources');
INSERT INTO "sys_i18n" VALUES (290, 'job.monitor_sys_resource_remark', '系统资源CPU/IO/Netword收集
interval单位分钟平均分钟资源情况
请根据cron表达式的时间单位分钟传入参数interva值', 'System Resource CPU/IO/Netword Collection
interval unit minutes, average minute resource situation
Note: Please pass the value of the parameter interva according to the time unit minutes of the cron expression');
INSERT INTO "sys_i18n" VALUES (291, 'job.delete_ne_config_backup', '删除-过期配置文件备份', 'Delete-Expired NE ETC Backup File');
INSERT INTO "sys_i18n" VALUES (292, 'job.delete_ne_config_backup_remark', 'storeDays表示保留最近天数的数据记录', 'storeDays: indicates that the most recent days of data records are kept.');
INSERT INTO "sys_i18n" VALUES (293, 'job.delete_alarm_record', '删除-过期告警记录', 'Delete-Expired Alarm Records');
INSERT INTO "sys_i18n" VALUES (294, 'job.delete_alarm_record_remark', 'storeDays表示保留最近天数的数据记录
storeNum保留数量默认保留7个', 'storeDays: indicates that the most recent days of data records are kept.
storeNum: the number of reservations, the default reservation is 7.');
INSERT INTO "sys_i18n" VALUES (295, 'job.delete_kpi_record', '删除-过期指标记录', 'Delete-Expired KPI Records');
INSERT INTO "sys_i18n" VALUES (296, 'job.delete_kpi_record_remark', 'storeDays表示保留最近天数的数据记录
neList表示匹配的网元类型', 'storeDays: Indicates the most recent days of data records retained
neList: Indicates the type of network elements matched');
INSERT INTO "sys_i18n" VALUES (297, 'menu.neData.backupData', '导出文件', 'Exponted File');
INSERT INTO "sys_i18n" VALUES (298, 'config.sys.user.passwordPolicyNot', '未配置密码策略', 'Password policy not configured');
INSERT INTO "sys_i18n" VALUES (299, 'job.export.jobID', '任务编号', 'ID');
INSERT INTO "sys_i18n" VALUES (300, 'job.export.jobName', '任务名称', 'Name');
INSERT INTO "sys_i18n" VALUES (301, 'job.export.jobGroupName', '任务组名', 'Group');
INSERT INTO "sys_i18n" VALUES (302, 'job.export.invokeTarget', '调用目标', 'Invoke');
INSERT INTO "sys_i18n" VALUES (303, 'job.export.targetParams', '传入参数', 'Incoming Parameters');
INSERT INTO "sys_i18n" VALUES (304, 'job.export.cronExpression', 'cron表达式', 'Cron');
INSERT INTO "sys_i18n" VALUES (305, 'job.export.status', '状态', 'Status');
INSERT INTO "sys_i18n" VALUES (306, 'job.export.remark', '备注说明', 'Description');
INSERT INTO "sys_i18n" VALUES (307, 'job.export.jobLogID', '任务日志编号', 'ID');
INSERT INTO "sys_i18n" VALUES (308, 'job.export.jobLogStatus', '任务日志状态', 'Status');
INSERT INTO "sys_i18n" VALUES (309, 'job.export.jobLogTime', '任务日志时间', 'Time');
INSERT INTO "sys_i18n" VALUES (310, 'job.noData', '没有可访问调度任务数据!', 'There is no accessible scheduling task data!');
INSERT INTO "sys_i18n" VALUES (311, 'job.errTargetParams', '操作调度任务【{name}】失败任务传入参数json字符串不正确', 'Failed to operate scheduling task [{name}] with incorrect task incoming parameter json string!');
INSERT INTO "sys_i18n" VALUES (312, 'job.errCronExpression', '操作调度任务【{name}】失败Cron表达式不正确', 'Scheduled task [{name}] failed with incorrect Cron expression!');
INSERT INTO "sys_i18n" VALUES (313, 'job.errJobExists', '调度任务新增【{name}】失败,同任务组内有相同任务名称', 'Failed to add a new task [{name}] to a scheduling task, same task name in the same task group');
INSERT INTO "sys_i18n" VALUES (314, 'job.statusEq', '变更状态与旧值相等!', 'The change state is equal to the old value!');
INSERT INTO "sys_i18n" VALUES (315, 'role.system', '系统', 'System');
INSERT INTO "sys_i18n" VALUES (316, 'role.admin', '管理人员', 'Administrator');
INSERT INTO "sys_i18n" VALUES (317, 'role.operator', '运维人员', 'Operators');
INSERT INTO "sys_i18n" VALUES (318, 'role.monitor', '监控人员', 'Monitor');
INSERT INTO "sys_i18n" VALUES (319, 'role.vistor', '普通用户', 'General Users');
INSERT INTO "sys_i18n" VALUES (320, 'role.systemRemark', '系统,无法修改删除', 'System, cannot modify or delete');
INSERT INTO "sys_i18n" VALUES (321, 'role.adminRemark', '管理人员 可以对设备进行任何操作', 'Administrators can perform any operation on the device');
INSERT INTO "sys_i18n" VALUES (322, 'role.operatorRemark', '运维人员 可以从设备读取数据,并对设备进行配置,但是不能对设备进行软件升级操作。', 'Operation and maintenance personnel can read data from the device and configure the device, but cannot perform software upgrade operations on the device.');
INSERT INTO "sys_i18n" VALUES (323, 'role.monitorRemark', '监控人员 只能从设备读取数据,而不能对设备进行任何设置', 'Monitoring personnel Can only read data from the device, but cannot make any settings on the device');
INSERT INTO "sys_i18n" VALUES (324, 'role.vistorRemark', '普通用户 只可看系统相关信息', 'Ordinary users can only see system-related information');
INSERT INTO "sys_i18n" VALUES (325, 'role.export.id', '角色编号', 'Role Number');
INSERT INTO "sys_i18n" VALUES (326, 'role.export.name', '角色名称 ', 'Role Name');
INSERT INTO "sys_i18n" VALUES (327, 'role.export.key', '角色键值', 'Role Key');
INSERT INTO "sys_i18n" VALUES (328, 'role.export.sort', '角色顺序', 'Role Sort');
INSERT INTO "sys_i18n" VALUES (329, 'role.export.dataScope', '角色数据范围', 'Role Data Range');
INSERT INTO "sys_i18n" VALUES (330, 'role.export.status', '角色状态', 'Role Status');
INSERT INTO "sys_i18n" VALUES (331, 'role.noData', '没有可访问角色数据!', 'There is no accessible role data!');
INSERT INTO "sys_i18n" VALUES (332, 'role.statusEq', '变更状态与旧值相等!', 'The change status is equal to the old value!');
INSERT INTO "sys_i18n" VALUES (333, 'role.errNameExists', '操作角色【{name}】失败,角色名称已存在', 'Manipulating role [{name}] failed, role name already exists!');
INSERT INTO "sys_i18n" VALUES (334, 'role.errKeyExists', '操作角色【{name}】失败,角色键值已存在', 'Failed to manipulate role [{name}], role key already exists!');
INSERT INTO "sys_i18n" VALUES (335, 'post.admin', '系统', 'Systems');
INSERT INTO "sys_i18n" VALUES (336, 'post.operator', '管理', 'Management');
INSERT INTO "sys_i18n" VALUES (337, 'post.monitor', '运维', 'Operation & Maintenance');
INSERT INTO "sys_i18n" VALUES (338, 'post.visitor', '监控', 'Monitoring');
INSERT INTO "sys_i18n" VALUES (339, 'post.export.id', '岗位编号 ', 'Position Number');
INSERT INTO "sys_i18n" VALUES (340, 'post.export.code', '岗位编码', 'Position Code');
INSERT INTO "sys_i18n" VALUES (341, 'post.export.name', '岗位名称', 'Position Name');
INSERT INTO "sys_i18n" VALUES (342, 'post.export.sort', '岗位排序', 'Position Sort');
INSERT INTO "sys_i18n" VALUES (343, 'post.export.status', '岗位状态', 'Position Status');
INSERT INTO "sys_i18n" VALUES (344, 'post.noData', '没有可访问岗位数据!', 'There is no accessible post data!');
INSERT INTO "sys_i18n" VALUES (345, 'post.errNameExists', '操作岗位【{name}】失败,岗位名称已存在已存在', 'Failed to manipulate post [{name}], post name already exists already exists');
INSERT INTO "sys_i18n" VALUES (346, 'post.errCodeExists', '操作角色【{name}】失败,角色键值已存在', 'Failed to manipulate role [{name}], role key already exists.');
INSERT INTO "sys_i18n" VALUES (347, 'user.export.id', '用户编号', 'User Number');
INSERT INTO "sys_i18n" VALUES (348, 'user.export.name', '登录账号', 'Account');
INSERT INTO "sys_i18n" VALUES (349, 'user.export.nick', '用户昵称', 'Nick Name');
INSERT INTO "sys_i18n" VALUES (350, 'user.export.email', '电子邮箱', 'E-Mail');
INSERT INTO "sys_i18n" VALUES (351, 'user.export.phone', '手机号码', 'Cell phone number');
INSERT INTO "sys_i18n" VALUES (352, 'user.export.sex', '用户性别', 'Gender');
INSERT INTO "sys_i18n" VALUES (353, 'user.export.status', '用户状态', 'Status');
INSERT INTO "sys_i18n" VALUES (354, 'user.export.deptID', '部门编号', 'Department number');
INSERT INTO "sys_i18n" VALUES (355, 'user.export.deptName', '部门名称', 'Department');
INSERT INTO "sys_i18n" VALUES (356, 'user.export.deptLeader', '部门负责人', 'Department Head');
INSERT INTO "sys_i18n" VALUES (357, 'user.export.loginIP', '用户登录IP', 'Login Address');
INSERT INTO "sys_i18n" VALUES (358, 'user.export.loginDate', '用户登录时间', 'Login Time');
INSERT INTO "sys_i18n" VALUES (359, 'user.noData', '没有可访问用户数据!', 'No accessible user data!');
INSERT INTO "sys_i18n" VALUES (360, 'user.statusEq', '变更状态与旧值相等!', 'The change status is equal to the old value!');
INSERT INTO "sys_i18n" VALUES (361, 'user.errPasswdOld', '修改密码失败,旧密码错误', 'Change password failed, old password is wrong');
INSERT INTO "sys_i18n" VALUES (362, 'user.errPasswdEqOld', '新密码不能与旧密码相同', 'New password cannot be the same as the old one');
INSERT INTO "sys_i18n" VALUES (363, 'config.sys.user.passwordPolicyError', '密码至少{minLength}位,至少包含{specialChars}个特殊字符和至少{uppercase}个大写字母和至少{lowercase}个小写字母', 'Passwords are at least {minLength} digits long and contain at least {specialChars} special characters and at least {uppercase} uppercase letter and at least {lowercase} lowercase letter.');
INSERT INTO "sys_i18n" VALUES (364, 'user.errEmailFormat', '操作用户【{name}】失败,邮箱格式错误', 'Failed to operate user [{name}], mailbox format error');
INSERT INTO "sys_i18n" VALUES (365, 'user.errEmailExists', '操作用户【{name}】失败,邮箱已存在', 'Failed to operate user [{name}], mailbox already exists.');
INSERT INTO "sys_i18n" VALUES (366, 'user.errPhoneFormat', '操作用户【{name}】失败,手机号码格式错误', 'Failed to operate user [{name}], cell phone number format is wrong.');
INSERT INTO "sys_i18n" VALUES (367, 'user.errPhoneExists', '操作用户【{name}】失败,手机号码已存在', 'Failed to operate user [{name}], cell phone number already exists.');
INSERT INTO "sys_i18n" VALUES (368, 'user.errNameExists', '操作用户【{name}】失败,登录账号已存在', 'Failed to operate user [{name}], login account already exists.');
INSERT INTO "sys_i18n" VALUES (369, 'user.import.mustItem', '表格中必填列表项,{text}', 'Required list item in form, {text}');
INSERT INTO "sys_i18n" VALUES (370, 'user.import.phoneExist', '用户编号:{id} 手机号码 {phone} 已存在', 'User ID: {id} cell phone number {phone} Existing');
INSERT INTO "sys_i18n" VALUES (371, 'user.import.phoneFormat', '用户编号:{id} 手机号码 {phone} 格式错误', 'User ID: {id} cell phone number {phone} Wrong format');
INSERT INTO "sys_i18n" VALUES (372, 'user.import.emailExist', '用户编号:{id} 用户邮箱:{email} 已存在', 'User ID: {id} User Email: {email} Existing');
INSERT INTO "sys_i18n" VALUES (373, 'user.import.emailFormat', '用户编号:{id} 用户邮箱:{email} 格式错误', 'User ID: {id} Email: {email} Wrong Format');
INSERT INTO "sys_i18n" VALUES (374, 'user.import.success', '用户编号:{id} 登录名称:{name} 导入成功', 'User ID:{id} Login name:{name} Imported successfully!');
INSERT INTO "sys_i18n" VALUES (375, 'user.import.fail', '用户编号:{id} 登录名称:{name} 导入失败', 'User ID: {id} Login name: {name} Import failed');
INSERT INTO "sys_i18n" VALUES (376, 'user.import.successUpdate', '用户编号:{id} 登录名称:{name} 更新成功', 'User ID: {id} Login name: {name} Update success');
INSERT INTO "sys_i18n" VALUES (377, 'user.import.failUpdate', '用户编号:{id} 登录名称:{name} 更新失败', 'User ID: {id} Login Name: {name} Update Failed');
INSERT INTO "sys_i18n" VALUES (378, 'user.import.failTip', '很抱歉,导入失败!共 {num} 条数据格式不正确,错误如下:', 'Sorry, the import failed! A total of {num} entries were not formatted correctly, the error is below:');
INSERT INTO "sys_i18n" VALUES (379, 'user.import.successTip', '恭喜您,数据已全部导入成功!共 {num} 条,数据如下:', 'Congratulations, the data has been imported successfully! There are {num} entries with the following data:');
INSERT INTO "sys_i18n" VALUES (380, 'app.common.err403', '无权访问 {method} {requestURI}', 'Unauthorized access {method} {requestURI}');
INSERT INTO "sys_i18n" VALUES (381, 'app.common.err401', '无效身份授权', 'Invalid authorization');
INSERT INTO "sys_i18n" VALUES (382, 'app.common.err400', '参数错误', 'Parameter error');
INSERT INTO "sys_i18n" VALUES (383, 'app.common.exportEmpty', '导出数据记录为空', 'Export data record is empty');
INSERT INTO "sys_i18n" VALUES (384, 'app.common.errOperateAdmin', '不允许操作内置用户', 'Built-in users are not allowed to operate');
INSERT INTO "sys_i18n" VALUES (385, 'app.common.errOperateRole', '不允许操作内置角色', 'Built-in roles are not allowed to be operated');
INSERT INTO "sys_i18n" VALUES (386, 'app.common.deleteSuccess', '删除成功:{num}', 'Deleted successfully: {num}');
INSERT INTO "sys_i18n" VALUES (387, 'app.common.loginSuccess', '登录成功', 'Login Success');
INSERT INTO "sys_i18n" VALUES (388, 'app.common.logoutSuccess', '注销成功', 'Logout Successful');
INSERT INTO "sys_i18n" VALUES (389, 'app.common.errUnlock', '该用户未被锁定', 'The user is not locked');
INSERT INTO "sys_i18n" VALUES (390, 'app.common.noLoginUser', '登录用户信息无效', 'Invalid login user information');
INSERT INTO "sys_i18n" VALUES (391, 'app.common.rateLimitTip', '访问过于频繁,请稍候再试', 'Access too often, please try again later');
INSERT INTO "sys_i18n" VALUES (392, 'log.operate.export.id', '操作编号', 'Log ID');
INSERT INTO "sys_i18n" VALUES (393, 'log.operate.export.title', '模块名称', 'Module Name');
INSERT INTO "sys_i18n" VALUES (394, 'log.operate.export.businessType', '业务类型', 'Business Type');
INSERT INTO "sys_i18n" VALUES (395, 'log.operate.export.method', '操作方法', 'Operation Method');
INSERT INTO "sys_i18n" VALUES (396, 'log.operate.export.requestMethod', '请求方式 ', 'Request Method');
INSERT INTO "sys_i18n" VALUES (397, 'log.operate.export.operatorType', '操作类型', 'Operation Type');
INSERT INTO "sys_i18n" VALUES (398, 'log.operate.export.operName', '操作人员', 'Operator');
INSERT INTO "sys_i18n" VALUES (399, 'log.operate.export.deptName', '操作人员部门名称', 'Operator Department Name');
INSERT INTO "sys_i18n" VALUES (400, 'log.operate.export.url', '请求链接地址', 'Request URL');
INSERT INTO "sys_i18n" VALUES (401, 'log.operate.export.ip', '请求主机 ', 'Request Host');
INSERT INTO "sys_i18n" VALUES (402, 'log.operate.export.location', '请求地址', 'Request Address');
INSERT INTO "sys_i18n" VALUES (403, 'log.operate.export.param', '请求参数', 'Request Parameters');
INSERT INTO "sys_i18n" VALUES (404, 'log.operate.export.msg', '操作信息', 'Operation Information');
INSERT INTO "sys_i18n" VALUES (405, 'log.operate.export.status', '操作状态', 'Status');
INSERT INTO "sys_i18n" VALUES (406, 'log.operate.export.costTime', '消耗时间(毫秒)', 'Time Consumption (ms)');
INSERT INTO "sys_i18n" VALUES (407, 'log.operate.export.operTime', '操作时间', 'Time');
INSERT INTO "sys_i18n" VALUES (408, 'log.login.export.id', '记录编号', 'Log ID');
INSERT INTO "sys_i18n" VALUES (409, 'log.login.export.userName', '登录账号', 'Login Account');
INSERT INTO "sys_i18n" VALUES (410, 'log.login.export.status', '登录状态', 'Status');
INSERT INTO "sys_i18n" VALUES (411, 'log.login.export.ip', '登录地址', 'Login Address');
INSERT INTO "sys_i18n" VALUES (412, 'log.login.export.location', '登录地点', 'Login Location');
INSERT INTO "sys_i18n" VALUES (413, 'log.login.export.browser', '浏览器', 'Browser');
INSERT INTO "sys_i18n" VALUES (414, 'log.login.export.os', '操作系统', 'Operating System');
INSERT INTO "sys_i18n" VALUES (415, 'log.login.export.msg', '登录信息', 'Login Information');
INSERT INTO "sys_i18n" VALUES (416, 'log.login.export.time', '登录时间', 'Login Time');
INSERT INTO "sys_i18n" VALUES (417, 'trace.tcpdump.noData', '找不到 {type} {id} 对应网元信息', 'Can it find {type} {id} information of the corresponding network element.');
INSERT INTO "sys_i18n" VALUES (418, 'register.errUsername', '账号不能以数字开头可包含大写小写字母数字且不少于5位', 'The account number cannot start with a number, but can contain upper and lower case letters, numbers, and not less than 5 digits.');
INSERT INTO "sys_i18n" VALUES (419, 'login.errPasswdExpire', '登录密码已过期', 'Login password has expired');
INSERT INTO "sys_i18n" VALUES (420, 'register.errPasswdNotEq', '用户确认输入密码不一致', 'User confirms password inconsistency');
INSERT INTO "sys_i18n" VALUES (421, 'register.success', '注册成功', 'Successful registration');
INSERT INTO "sys_i18n" VALUES (422, 'register.successMsg', '{name} 注册成功 {id}', '{name} Register Successful {id}');
INSERT INTO "sys_i18n" VALUES (423, 'log.operate.title.sysJobLog', '调度任务日志', 'Scheduling Task Logs');
INSERT INTO "sys_i18n" VALUES (424, 'log.operate.title.sysJob', '调度任务', 'Scheduling Tasks');
INSERT INTO "sys_i18n" VALUES (425, 'log.operate.title.tcpdump', '信令抓包', 'Signaling Capture');
INSERT INTO "sys_i18n" VALUES (426, 'log.operate.title.sysConfig', '参数配置', 'Parameter Configuration');
INSERT INTO "sys_i18n" VALUES (427, 'log.operate.title.sysDept', '部门', 'Sector');
INSERT INTO "sys_i18n" VALUES (428, 'log.operate.title.sysDictData', '字典数据', 'Dictionary Data');
INSERT INTO "sys_i18n" VALUES (429, 'log.operate.title.sysDictType', '字典类型', 'Dictionary type');
INSERT INTO "sys_i18n" VALUES (430, 'log.operate.title.sysMenu', '菜单', 'Menu');
INSERT INTO "sys_i18n" VALUES (431, 'log.operate.title.sysPost', '岗位', 'Positions');
INSERT INTO "sys_i18n" VALUES (432, 'log.operate.title.sysProfile', '个人信息', 'Personal Information');
INSERT INTO "sys_i18n" VALUES (433, 'log.operate.title.sysProfileAvatar', '个人头像', 'Personal avatar');
INSERT INTO "sys_i18n" VALUES (434, 'log.operate.title.sysRole', '角色', 'Roles');
INSERT INTO "sys_i18n" VALUES (435, 'log.operate.title.sysUser', '用户', 'User');
INSERT INTO "sys_i18n" VALUES (436, 'log.operate.title.sysLogOper', '操作日志记录', 'Operation Logging');
INSERT INTO "sys_i18n" VALUES (437, 'log.operate.title.sysLogLogin', '登录日志记录', 'Operation Logging');
INSERT INTO "sys_i18n" VALUES (438, 'login.errNameOrPasswd', '用户不存在或密码错误', 'User does not exist or password is wrong');
INSERT INTO "sys_i18n" VALUES (439, 'login.errDelFlag', '对不起,您的账号已被删除', 'Sorry, your account has been deleted');
INSERT INTO "sys_i18n" VALUES (440, 'login.errStatus', '对不起,您的帐户已被禁用', 'Sorry, your account has been disabled');
INSERT INTO "sys_i18n" VALUES (441, 'login.errRetryPasswd', '密码输入错误多次,帐户已被锁定', 'Password was entered incorrectly several times, account has been locked');
INSERT INTO "sys_i18n" VALUES (442, 'captcha.err', '验证码错误', 'Captcha Error');
INSERT INTO "sys_i18n" VALUES (443, 'captcha.errValid', '验证码已失效', 'Captcha is invalid');
INSERT INTO "sys_i18n" VALUES (444, 'app.common.noUaOsBrowser', '未知 未知', 'Unknown Unknown');
INSERT INTO "sys_i18n" VALUES (445, 'app.common.noIPregion', '内网', 'Intranet');
INSERT INTO "sys_i18n" VALUES (446, 'app.common.unknown', '未知', 'Unknown');
INSERT INTO "sys_i18n" VALUES (447, 'app.common.noNEInfo', '未找到匹配网元信息', 'No matching network element information found');
INSERT INTO "sys_i18n" VALUES (448, 'ne.udm.errImportUserAuthFileFormat', '请上传.csv或.txt的格式文件。英文逗号分割txt格式imsi, ki, algo, amf, opc', 'Please upload a file in the format of. csv or. txt. English comma separated txt format: imsi, ki, algo, amf, opc');
INSERT INTO "sys_i18n" VALUES (449, 'ne.udm.errExportType', '导出文件类型支持CSV和txt', 'Export file types support CSV and txt');
INSERT INTO "sys_i18n" VALUES (450, 'ne.udm.errImportUserSubFileFormat', '请上传.csv或.txt的格式文件。英文逗号分割txt格式imsi, msisdn, ambr, nssai, arfb, sar, rat, cn, smf_sel, sm_dat, eps_dat', 'Please upload files in .csv or .txt format. English comma-separated txt format: imsi, msisdn, ambr, nssai, arfb, sar, rat, cn, smf_sel, sm_dat, eps_dat');
INSERT INTO "sys_i18n" VALUES (451, 'log.operate.title.udmAuth', 'UDM鉴权用户', 'UDM Authentication');
INSERT INTO "sys_i18n" VALUES (452, 'log.operate.title.udmSub', 'UDM签约用户', 'UDM Subscriber');
INSERT INTO "sys_i18n" VALUES (453, 'dictType.active_alarm_type', '活动告警类型', 'Event Alarm Types');
INSERT INTO "sys_i18n" VALUES (454, 'dictType.active_alarm_type_remark', '活动告警类型列表', 'List of Active Alarm Types');
INSERT INTO "sys_i18n" VALUES (455, 'dictData.active_alarm_type.communication', '通信告警', 'Communication Alarm');
INSERT INTO "sys_i18n" VALUES (456, 'dictData.active_alarm_type.equipment', '设备告警', 'Equipment Alarm');
INSERT INTO "sys_i18n" VALUES (457, 'dictData.active_alarm_type.processing', '处理错误', 'Processing Failure Alarm');
INSERT INTO "sys_i18n" VALUES (458, 'dictData.active_alarm_type.environmental', '环境告警', 'Environmental Alarm');
INSERT INTO "sys_i18n" VALUES (459, 'dictData.active_alarm_type.qualityOfService', '服务质量', 'Quality of Service Alarm');
INSERT INTO "sys_i18n" VALUES (460, 'dictType.active_clear_type', '告警清除类型', 'Alarm Clearing Types');
INSERT INTO "sys_i18n" VALUES (461, 'dictType.active_clear_type_remark', '告警清除类型列表', 'List of Alarm Clearing Types');
INSERT INTO "sys_i18n" VALUES (462, 'dictData.active_clear_type.notCleared', '告警未清除', 'Not cleared');
INSERT INTO "sys_i18n" VALUES (463, 'dictData.active_clear_type.hand', '手动清除', 'Manually cleared');
INSERT INTO "sys_i18n" VALUES (464, 'dictData.active_clear_type.auto', '自动清除', 'Automatically cleared');
INSERT INTO "sys_i18n" VALUES (465, 'dictType.active_ack_state', '告警确认类型', 'Alarm Acknowledgement Types');
INSERT INTO "sys_i18n" VALUES (466, 'dictType.active_ack_state_remark', '告警确认类型列表', 'Alarm Acknowledgement Type List');
INSERT INTO "sys_i18n" VALUES (467, 'dictData.active_ack_state.unconfirmed', '未确认', 'Not Confirm');
INSERT INTO "sys_i18n" VALUES (468, 'dictData.active_ack_state.confirmed', '已确认', 'Confirm');
INSERT INTO "sys_i18n" VALUES (469, 'dictType.active_alarm_severity', '严重程度', 'Severity');
INSERT INTO "sys_i18n" VALUES (470, 'dictType.active_alarm_severity_remark', '严重程度列表', 'Severity List');
INSERT INTO "sys_i18n" VALUES (471, 'dictData.active_alarm_severity.critical', '严重告警', 'Critical');
INSERT INTO "sys_i18n" VALUES (472, 'dictData.active_alarm_severity.major', '主要告警', 'Major');
INSERT INTO "sys_i18n" VALUES (473, 'dictData.active_alarm_severity.minor', '次要告警', 'Minor');
INSERT INTO "sys_i18n" VALUES (474, 'dictData.active_alarm_severity.warning', '警告告警', 'Warning');
INSERT INTO "sys_i18n" VALUES (475, 'dictData.active_alarm_severity.event', '事件告警', 'Event');
INSERT INTO "sys_i18n" VALUES (476, 'config.sys.officialUrl', '系统设置-官网链接', 'System Settings - Official Website Links');
INSERT INTO "sys_i18n" VALUES (477, 'config.sys.helpDoc', '系统设置-系统使用文档', 'System Settings-System Documentation');
INSERT INTO "sys_i18n" VALUES (478, 'config.sys.officialUrlRemark', '默认无地址用#号', 'Default no address with # sign');
INSERT INTO "sys_i18n" VALUES (479, 'config.sys.helpDocRemark', '静态文件目录地址,使用{language}区分语言文件', 'Static file directory address, use {language} to distinguish language files');
INSERT INTO "sys_i18n" VALUES (480, 'log.operate.title.neAction', '网元处理', 'Network Element Processing');
INSERT INTO "sys_i18n" VALUES (481, 'log.operate.title.helpDoc', '系统使用文档', 'System Usage Documentation');
INSERT INTO "sys_i18n" VALUES (482, 'menu.ueUser.n3iwf', 'N3IWF在线用户', 'N3IWF Online User');
INSERT INTO "sys_i18n" VALUES (483, 'menu.neData.pcfSub', '用户策略控制信息', 'User PCC Information');
INSERT INTO "sys_i18n" VALUES (484, 'menu.system.user.editRole', '修改用户角色', 'Modifying User Role');
INSERT INTO "sys_i18n" VALUES (485, 'config.sys.i18nOpen', '国际化切换', 'Internationalization Switching');
INSERT INTO "sys_i18n" VALUES (486, 'config.sys.i18nDefault', '国际化默认语言', 'Internationalization Default Language');
INSERT INTO "sys_i18n" VALUES (487, 'user.export.role', '用户角色', 'Role');
INSERT INTO "sys_i18n" VALUES (488, 'menu.system.setting.i18n', '国际化切换', 'Internationalization Switch');
INSERT INTO "sys_i18n" VALUES (489, 'menu.system.setting.i18nRemark', '国际化多语言的切换选择', 'Internationalized multilingual switching options');
INSERT INTO "sys_i18n" VALUES (490, 'dictType.index_status', '首页状态', 'Home Status');
INSERT INTO "sys_i18n" VALUES (491, 'dictType.index_status_remark', '首页的网元状态颜色', 'Network element status colors on the home page');
INSERT INTO "sys_i18n" VALUES (492, 'dictType.index_status.normal', '正常', 'Normal');
INSERT INTO "sys_i18n" VALUES (493, 'dictType.index_status.abnormal', '异常', 'Abnormal');
INSERT INTO "sys_i18n" VALUES (494, 'menu.log.neFile', '网元日志文件', 'NE Log File');
INSERT INTO "sys_i18n" VALUES (495, 'menu.dashboard.overview.smfUeNum', '展示数据会话数', 'Display data session number');
INSERT INTO "sys_i18n" VALUES (496, 'menu.dashboard.overview.imsUeNum', '展示语音会话数', 'Display the number of voice sessions');
INSERT INTO "sys_i18n" VALUES (497, 'menu.dashboard.overview.gnbBase', '展示5G基站在线信息', 'Display 5G base station online information');
INSERT INTO "sys_i18n" VALUES (498, 'menu.dashboard.overview.enbBase', '展示4G基站在线信息', 'Display 4G base station online information');
INSERT INTO "sys_i18n" VALUES (499, 'job.ne_alarm_state_check', '网元告警-状态检查', 'NE Alarm-Health State Check');
INSERT INTO "sys_i18n" VALUES (500, 'job.ne_alarm_state_check_remark', '检查网元的健康状况,在出现异常时发出警报。
Alarm type:
CommunicationAlarm=1
EquipmentAlarm=2
ProcessingFailure=3
EnvironmentalAlarm=4
QualityOfServiceAlarm=5
Severity:
Critical=1
Major=2
Minor=3
Warning=4', 'Checks the health of network elements and sends alerts in case of anomalies.
Alarm type:
CommunicationAlarm=1
EquipmentAlarm=2
ProcessingFailure=3
EnvironmentalAlarm=4
QualityOfServiceAlarm=5
Severity:
Critical=1
Major=2
Minor=3
Warning=4');
INSERT INTO "sys_i18n" VALUES (501, 'menu.neUser.nssf', 'NSSF在线订阅数', 'NSSF Subscription Info');
INSERT INTO "sys_i18n" VALUES (502, 'menu.neUser.nssfAmf', 'NSSF可用的注册AMF', 'NSSF Available AMFs');
INSERT INTO "sys_i18n" VALUES (503, 'menu.monitor.topology', '拓扑信息', 'Topology Info');
INSERT INTO "sys_i18n" VALUES (504, 'menu.monitor.topologyBuild', '拓扑图组编辑', 'Topological Graph Build');
INSERT INTO "sys_i18n" VALUES (505, 'log.operate.title.chartGraph', '拓扑图组', 'Topological Graph');
INSERT INTO "sys_i18n" VALUES (506, 'menu.monitor.topologyArchitecture', '网元拓扑组网', 'NE System Topology');
INSERT INTO "sys_i18n" VALUES (507, 'menu.alarm', '告警', 'Alarm');
INSERT INTO "sys_i18n" VALUES (508, 'menu.topology', '拓扑', 'Topology');
INSERT INTO "sys_i18n" VALUES (509, 'config.sys.lockTime', '系统设置-锁屏超时时长', 'System Settings - Screen Lock Timeout Duration');
INSERT INTO "sys_i18n" VALUES (510, 'config.sys.lockTimeRemark', '无操作时锁屏超时时长,单位(秒)。0表示无锁屏超时', 'Timeout of lock screen when no operation, unit (sec), 0 means no timeout of lock screen');
INSERT INTO "sys_i18n" VALUES (511, 'sys.account.captchaType', '账号自助-验证码类型', 'Account Self Service - Captcha Type');
INSERT INTO "sys_i18n" VALUES (512, 'sys.account.captchaTypeRemark', '使用验证码类型math数值计算char字符验证', 'Using CAPTCHA types (math numeric calculation, char character validation)');
INSERT INTO "sys_i18n" VALUES (513, 'menu.dashboard', '仪表盘', 'Dashboard');
INSERT INTO "sys_i18n" VALUES (514, 'menu.dashboard.overview', '总览', 'Overview');
INSERT INTO "sys_i18n" VALUES (515, 'menu.dashboard.imsCDR', '语音话单', 'Voice CDR');
INSERT INTO "sys_i18n" VALUES (516, 'dictType.cdr_sip_code', 'IMS-Voice-SIP响应代码类别类型', 'IMS-Voice-SIP Response Code Category Type');
INSERT INTO "sys_i18n" VALUES (517, 'dictType.cdr_call_type', 'IMS-呼叫类型', 'IMS-Call Type');
INSERT INTO "sys_i18n" VALUES (518, 'dictType.ue_auth_code', 'UE 事件认证代码类型', 'UE Event Authentication Code Type');
INSERT INTO "sys_i18n" VALUES (519, 'dictType.ue_event_type', 'UE 事件类型', 'UE Event Type');
INSERT INTO "sys_i18n" VALUES (520, 'dictData.cdr_sip_code.200', '200 正常通话', '200 OK');
INSERT INTO "sys_i18n" VALUES (521, 'dictData.cdr_sip_code.403', '403 禁止访问', '403 Forbidden');
INSERT INTO "sys_i18n" VALUES (522, 'dictData.cdr_sip_code.408', '408 请求超时', '408 Request Timeout');
INSERT INTO "sys_i18n" VALUES (523, 'dictData.cdr_sip_code.500', '500 内部服务器错误', '500 Internal Server Error');
INSERT INTO "sys_i18n" VALUES (524, 'dictData.cdr_call_type.audio', '语音', 'Voice');
INSERT INTO "sys_i18n" VALUES (525, 'dictData.cdr_call_type.video', '视频', 'Video');
INSERT INTO "sys_i18n" VALUES (526, 'dictData.ue_auth_code.200', '成功', 'Success');
INSERT INTO "sys_i18n" VALUES (527, 'dictData.ue_auth_code.001', '网络失败', 'Network Failure');
INSERT INTO "sys_i18n" VALUES (528, 'dictData.ue_auth_code.002', '接口失败', 'Interface Failure');
INSERT INTO "sys_i18n" VALUES (529, 'dictData.ue_auth_code.003', 'MAC失败', 'MAC Failure');
INSERT INTO "sys_i18n" VALUES (530, 'dictData.ue_auth_code.004', '同步失败', 'Synchronization failure');
INSERT INTO "sys_i18n" VALUES (531, 'dictData.ue_auth_code.005', '不接受非5G认证', 'Non-5G Authentication Not Accepted');
INSERT INTO "sys_i18n" VALUES (532, 'dictData.ue_auth_code.006', '响应失败', 'Response Failure');
INSERT INTO "sys_i18n" VALUES (533, 'dictData.ue_auth_code.007', '未知', 'Unknown');
INSERT INTO "sys_i18n" VALUES (534, 'dictData.ue_event_type.auth', '认证', 'Authentication');
INSERT INTO "sys_i18n" VALUES (535, 'dictData.ue_event_type.detach', '注销', 'Detach');
INSERT INTO "sys_i18n" VALUES (536, 'dictData.ue_event_type.state', 'CM状态', 'CM Status');
INSERT INTO "sys_i18n" VALUES (537, 'dictType.ue_event_cm_state', 'UE 事件CM状态', 'UE Event CM Status');
INSERT INTO "sys_i18n" VALUES (538, 'dictData.ue_event_cm_state.connected', '连接', 'Connected');
INSERT INTO "sys_i18n" VALUES (539, 'dictData.ue_event_cm_state.idle', '空闲', 'Idle');
INSERT INTO "sys_i18n" VALUES (540, 'dictData.ue_event_cm_state.inactive', '不活动', 'Inactive');
INSERT INTO "sys_i18n" VALUES (541, 'dictData.cdr_sip_code.404', '404 找不到', '404 Not Found');
INSERT INTO "sys_i18n" VALUES (542, 'dictData.cdr_sip_code.487', '487 请求已终止', '487 Request Terminated');
INSERT INTO "sys_i18n" VALUES (543, 'dictData.cdr_sip_code.503', '503 服务不可用', '503 Service Unavailable');
INSERT INTO "sys_i18n" VALUES (544, 'dictData.cdr_sip_code.504', '504 服务器超时', '504 Server Timeout');
INSERT INTO "sys_i18n" VALUES (545, 'dictData.cdr_sip_code.603', '603 下降', '603 Decline');
INSERT INTO "sys_i18n" VALUES (546, 'dictData.cdr_sip_code.606', '606 不可接受', '606 Not Acceptable');
INSERT INTO "sys_i18n" VALUES (547, 'cache.name.token', '用户令牌', 'User Token');
INSERT INTO "sys_i18n" VALUES (548, 'cache.name.sys_config', '参数管理', 'Parameters Management');
INSERT INTO "sys_i18n" VALUES (549, 'cache.name.sys_dict', '字典管理', 'Dictionary Management');
INSERT INTO "sys_i18n" VALUES (550, 'cache.name.captcha_codes', '验证码', 'Captcha');
INSERT INTO "sys_i18n" VALUES (551, 'cache.name.repeat_submit', '防重提交', 'Resubmit');
INSERT INTO "sys_i18n" VALUES (552, 'cache.name.rate_limit', '限流', 'Limit Traffic');
INSERT INTO "sys_i18n" VALUES (553, 'cache.name.pwd_err_cnt', '登录账户密码错误次数', 'Number of Password Errors');
INSERT INTO "sys_i18n" VALUES (554, 'cache.name.ne_info', '网元信息管理', 'NE Info Management');
INSERT INTO "sys_i18n" VALUES (555, 'cache.name.ne_data', '网元数据管理', 'NE Data Management');
INSERT INTO "sys_i18n" VALUES (556, 'dictData.cdr_call_type.sms', '短信', 'SMS');
INSERT INTO "sys_i18n" VALUES (557, 'dictData.cdr_sip_code.202', '202 已接受', '202 Accepted');
INSERT INTO "sys_i18n" VALUES (558, 'dictData.cdr_sip_code.488', '488 这里不接受', '488 Not Acceptable Here');
INSERT INTO "sys_i18n" VALUES (559, 'dictData.cdr_sip_code.0', '0 原因不明', '0 Unknown Reason');
INSERT INTO "sys_i18n" VALUES (560, 'log.operate.title.ws', 'WS会话', 'WS Sessions');
INSERT INTO "sys_i18n" VALUES (561, 'log.operate.title.neHost', '网元主机', 'NE Host');
INSERT INTO "sys_i18n" VALUES (562, 'neHost.noData', '没有可访问主机信息数据!', 'There is no accessible host information data!');
INSERT INTO "sys_i18n" VALUES (563, 'neHost.errKeyExists', '主机信息操作【{name}】失败,同组内名称已存在', 'Host information operation [{name}] failed, name already exists in the same group');
INSERT INTO "sys_i18n" VALUES (564, 'neHost.errByHostInfo', '连接失败,请检查连接参数后重试', 'Connection Failed, Please check connection parameters and retry');
INSERT INTO "sys_i18n" VALUES (565, 'dictType.ne_host_type', '网元主机连接类型', 'Network element host connection type');
INSERT INTO "sys_i18n" VALUES (566, 'dictType.ne_host_groupId', '网元主机分组', 'Network element host grouping');
INSERT INTO "sys_i18n" VALUES (567, 'dictType.ne_host_authMode', '网元主机认证模式', 'Network element host authentication mode');
INSERT INTO "sys_i18n" VALUES (568, 'dictData.ne_host_type.ssh', 'SSH', 'SSH');
INSERT INTO "sys_i18n" VALUES (569, 'dictData.ne_host_type.telnet', 'Telnet', 'Telnet');
INSERT INTO "sys_i18n" VALUES (570, 'dictData.ne_host_groupId.0', '其他', 'Other');
INSERT INTO "sys_i18n" VALUES (571, 'dictData.ne_host_groupId.1', '网元', 'Network Elements');
INSERT INTO "sys_i18n" VALUES (572, 'dictData.ne_host_groupId.2', '系统', 'System');
INSERT INTO "sys_i18n" VALUES (573, 'dictData.ne_host_authMode.0', '密码认证', 'Password Authentication');
INSERT INTO "sys_i18n" VALUES (574, 'dictData.ne_host_authMode.1', '私钥认证', 'Private key authentication');
INSERT INTO "sys_i18n" VALUES (575, 'menu.tools.terminal', '主机终端', 'Host Terminal');
INSERT INTO "sys_i18n" VALUES (576, 'menu.ne.neHost', '网元主机', 'NE Host');
INSERT INTO "sys_i18n" VALUES (577, 'menu.ne.neHostCommand', '网元主机命令', 'NE Host CMD');
INSERT INTO "sys_i18n" VALUES (578, 'log.operate.title.neHostCmd', '网元主机命令', 'NE Host CMD');
INSERT INTO "sys_i18n" VALUES (579, 'neHostCmd.noData', '没有可访问主机命令数据!', 'No accessible host command data!');
INSERT INTO "sys_i18n" VALUES (580, 'neHostCmd.errKeyExists', '主机命令操作【{name}】失败,同组内名称已存在', 'Host command operation [{name}] failed, name already exists in the same group');
INSERT INTO "sys_i18n" VALUES (581, 'dictType.ne_host_cmd_groupId', '网元主机命令分组', 'Network element host command grouping');
INSERT INTO "sys_i18n" VALUES (582, 'dictData.ne_host_cmd_groupId.0', '默认', 'Default');
INSERT INTO "sys_i18n" VALUES (583, 'dictData.ne_host_cmd_groupId.1', '快速命令', 'Quick Commands');
INSERT INTO "sys_i18n" VALUES (584, 'menu.ne.neInfo', '网元信息', 'NE Information');
INSERT INTO "sys_i18n" VALUES (585, 'log.operate.title.neInfo', '网元信息', 'NE Information');
INSERT INTO "sys_i18n" VALUES (586, 'neInfo.noData', '没有可访问网元信息数据!', 'There is no accessible network element information data!');
INSERT INTO "sys_i18n" VALUES (587, 'neInfo.errKeyExists', '网元信息操作【{key}】失败,同类型下标识已存在', 'NE info operation [{key}] failed, identifier already exists under the same type');
INSERT INTO "sys_i18n" VALUES (588, 'log.operate.title.imsCDR', '通话话单', 'Voice CDR');
INSERT INTO "sys_i18n" VALUES (589, 'menu.dashboard.amfUE', '5G 终端事件', '5G UE Events');
INSERT INTO "sys_i18n" VALUES (590, 'log.operate.title.amfUE', '5G 终端事件', '5G UE Events');
INSERT INTO "sys_i18n" VALUES (591, 'dictData.ne_info_status.0', '离线', 'Offline');
INSERT INTO "sys_i18n" VALUES (592, 'dictData.ne_info_status.1', '在线', 'Active');
INSERT INTO "sys_i18n" VALUES (593, 'dictData.ne_info_status.2', '等待同步', 'Wait Sync');
INSERT INTO "sys_i18n" VALUES (594, 'dictData.ne_info_status.3', '待机', 'Standby');
INSERT INTO "sys_i18n" VALUES (595, 'dictType.ne_info_status', '网元信息状态', 'NE Info State');
INSERT INTO "sys_i18n" VALUES (596, 'menu.ne.neQuickSetup', '网元快速安装', 'NE Quick Setup');
INSERT INTO "sys_i18n" VALUES (597, 'log.operate.title.neConfig', '网元参数配置', 'NE Parameter Configuration');
INSERT INTO "sys_i18n" VALUES (598, 'menu.ne.neLicense', '网元许可', 'NE License');
INSERT INTO "sys_i18n" VALUES (599, 'log.operate.title.neLicense', '网元许可', 'NE License');
INSERT INTO "sys_i18n" VALUES (600, 'menu.ne.neSoftware', '网元软件包', 'NE Software');
INSERT INTO "sys_i18n" VALUES (601, 'log.operate.title.neSoftware', '网元软件包', 'NE Software');
INSERT INTO "sys_i18n" VALUES (602, 'log.operate.title.neVersion', '网元版本', 'NE Version');
INSERT INTO "sys_i18n" VALUES (603, 'menu.ne.neVersion', '网元版本', 'NE Version');
INSERT INTO "sys_i18n" VALUES (604, 'dictType.ne_license_status', '网元许可状态', 'NE License Status');
INSERT INTO "sys_i18n" VALUES (605, 'dictData.ne_license_status.0', '无效', 'Invalid');
INSERT INTO "sys_i18n" VALUES (606, 'dictData.ne_license_status.1', '有效', 'Valid');
INSERT INTO "sys_i18n" VALUES (607, 'menu.dashboard.mocn', 'MOCN', 'MOCN');
INSERT INTO "sys_i18n" VALUES (608, 'menu.monitor.cdr', '话单', 'CDR');
INSERT INTO "sys_i18n" VALUES (609, 'menu.monitor.event', '事件', 'Events');
INSERT INTO "sys_i18n" VALUES (610, 'post.export.time', '创建时间', 'Creation Time');
INSERT INTO "sys_i18n" VALUES (611, 'role.export.time', '创建时间', 'Creation Time');
INSERT INTO "sys_i18n" VALUES (612, 'dictData.ne_host_authMode.2', '免密认证', 'Confidentiality Auth Mode');
INSERT INTO "sys_i18n" VALUES (613, 'menu.ne.neConfig', '网元配置', 'NE Config');
INSERT INTO "sys_i18n" VALUES (614, 'dictData.ne_version_status.0', '', 'Nothing');
INSERT INTO "sys_i18n" VALUES (615, 'dictData.ne_version_status.1', '已是最新', 'Updated');
INSERT INTO "sys_i18n" VALUES (616, 'dictData.ne_version_status.2', '上一版本', 'Previous');
INSERT INTO "sys_i18n" VALUES (617, 'dictData.ne_version_status.3', '有新版本', 'Has New');
INSERT INTO "sys_i18n" VALUES (618, 'menu.fault.event', '事件通知', 'Event Notification');
INSERT INTO "sys_i18n" VALUES (619, 'menu.dashboard.smfCDR', '数据话单', 'Data CDR');
INSERT INTO "sys_i18n" VALUES (620, 'log.operate.title.smfCDR', '数据话单', 'Data CDR');
INSERT INTO "sys_i18n" VALUES (621, 'config.sys.i18nDefaultRemark', '国际化默认语言可选择 en_US、zh_CN', 'Internationalization default language selectable en_US、zh_CN');
INSERT INTO "sys_i18n" VALUES (622, 'config.sys.i18nOpenRemark', '是否显示切换的控件 true/false', 'Whether to display switched controls true/false');
INSERT INTO "sys_i18n" VALUES (623, 'menu.dashboard.mmeUE', '4G 终端事件', '4G UE Events');
INSERT INTO "sys_i18n" VALUES (624, 'log.operate.title.mmeUE', '4G 终端事件', '4G UE Events');
INSERT INTO "sys_i18n" VALUES (625, 'menu.system.user.editPost', '修改用户岗位', 'Modify User Post');
INSERT INTO "sys_i18n" VALUES (626, 'menu.dashboard.smscCDR', '短信话单', 'SMS CDR');
INSERT INTO "sys_i18n" VALUES (627, 'log.operate.title.smscCDR', '短信话单', 'SMS CDR');
INSERT INTO "sys_i18n" VALUES (628, 'menu.trace.pcapFile', '信令抓包文件', 'Signaling Capture File');
INSERT INTO "sys_i18n" VALUES (629, 'menu.trace.taskAnalyze', '网元跟踪任务分析', 'NE Trace Task Analysis');
INSERT INTO "sys_i18n" VALUES (630, 'job.ne_data_udm', '网元数据-UDM用户数据同步', 'NE Data-Sync UDM Data');
INSERT INTO "sys_i18n" VALUES (631, 'menu.system.setting.doc', '系统使用文档', 'System User Documentation');
INSERT INTO "sys_i18n" VALUES (632, 'menu.system.setting.official', '官网链接', 'Official Website');
INSERT INTO "sys_i18n" VALUES (633, 'menu.system.setting.lock', '锁屏操作', 'Lockscreen Operation');
INSERT INTO "sys_i18n" VALUES (634, 'menu.ne.neConfigBackup', '网元配置备份', 'NE Config Backups');
INSERT INTO "sys_i18n" VALUES (635, 'job.ne_config_backup', '网元-配置文件定期备份', 'NE-Config Backup Regularly');
INSERT INTO "sys_i18n" VALUES (636, 'job.ne_config_backup_remark', '网元配置文件定期备份到网管服务器
可查看网元配置备份记录进行下载或通过网元信息操作导入配置', 'Network Element Configuration files are regularly backed up to the OMC
View network element configuration backup records for downloading or importing configurations through network element information operations.');
INSERT INTO "sys_i18n" VALUES (637, 'job.backup_export_table_sys_log_operate', '备份-操作日志表定期导出', 'Backup-Operation Log Table Periodic Export');
INSERT INTO "sys_i18n" VALUES (638, 'job.backup_export_table_cdr_event_ims', '备份-语音话单表定期导出', 'Backup-Regular Export of voice bill forms');
INSERT INTO "sys_i18n" VALUES (639, 'job.backup_export_table_cdr_event_smf', '备份-数据话单表定期导出', 'Backup-Regular Export of data sheet tables');
INSERT INTO "sys_i18n" VALUES (640, 'cache.name.oauth2_codes', '客户端授权码', 'Oauth2 Client Code');
INSERT INTO "sys_i18n" VALUES (641, 'cache.name.oauth2_devices', '客户端令牌', 'Oauth2 Token');
INSERT INTO "sys_i18n" VALUES (644, 'menu.log.exportFile', '导出文件', 'Exported File');
INSERT INTO "sys_i18n" VALUES (645, 'menu.perf.kpiCReport', '自定义指标数据', 'Custom Indicator Data');
INSERT INTO "sys_i18n" VALUES (646, 'menu.trace.taskHLR', 'HLR 跟踪任务', 'HLR Trace Task');
INSERT INTO "sys_i18n" VALUES (647, 'dictType.cdr_cause_code', 'CDR 响应原因代码类别类型', 'CDR Response Reason Code Category Type');
INSERT INTO "sys_i18n" VALUES (648, 'dictData.cdr_cause_code.0', '未知错误', 'Unknown Error');
INSERT INTO "sys_i18n" VALUES (649, 'dictData.cdr_cause_code.8', '运营者确定的禁止', 'Operator determined barring');
INSERT INTO "sys_i18n" VALUES (650, 'dictData.cdr_cause_code.10', '禁止呼叫', 'Call Barred');
INSERT INTO "sys_i18n" VALUES (651, 'dictData.cdr_cause_code.21', '呼叫被拒', 'Call rejected');
INSERT INTO "sys_i18n" VALUES (652, 'dictData.cdr_cause_code.22', '数量已更改', 'Number changed');
INSERT INTO "sys_i18n" VALUES (653, 'dictData.cdr_cause_code.27', '目的地出错', 'Destination out of order');
INSERT INTO "sys_i18n" VALUES (654, 'dictData.cdr_cause_code.28', '数字格式无效(数字不完整)', 'Invalid number format (incomplete number)');
INSERT INTO "sys_i18n" VALUES (655, 'dictData.cdr_cause_code.29', '设施被拒', 'Facility rejected');
INSERT INTO "sys_i18n" VALUES (656, 'dictData.cdr_cause_code.30', '回复状态查询', 'Response to STATUS ENQUIRY');
INSERT INTO "sys_i18n" VALUES (657, 'dictData.cdr_cause_code.38', '网络故障', 'Network out of order');
INSERT INTO "sys_i18n" VALUES (658, 'dictData.cdr_cause_code.41', '临时故障', 'Temporary failure');
INSERT INTO "sys_i18n" VALUES (659, 'dictData.cdr_cause_code.42', '交换设备拥塞', 'Switching equipment congestion');
INSERT INTO "sys_i18n" VALUES (660, 'dictData.cdr_cause_code.47', '资源不可用', 'Resource unavailable, unspecified');
INSERT INTO "sys_i18n" VALUES (661, 'dictData.cdr_cause_code.50', '请求的设施未订阅', 'Requested facility not subscribed');
INSERT INTO "sys_i18n" VALUES (662, 'job.backup_export_table_cdr_event_smsc', '备份-短信话单表定期导出', 'Backup-Regular Export of SMS call list');
INSERT INTO "sys_i18n" VALUES (663, 'job.backup_remove_file', '备份-定期删除备份目录下文件', 'Backup-Periodically Delete Directory Files');
INSERT INTO "sys_i18n" VALUES (664, 'config.sys.homePage', '自定义主页', 'Custom Home Page');
INSERT INTO "sys_i18n" VALUES (665, 'config.sys.homePageRemark', '选择列表中的任一页面作为主页路径', 'Select any page in the list as the homepage');
INSERT INTO "sys_i18n" VALUES (666, 'menu.ne.neOverview', '网元概览', 'NE Overview');
INSERT INTO "sys_i18n" VALUES (667, 'menu.ne.neOverviewRemark', '显示所有网元状态配置和license等概览信息', 'Displays overview information such as status, configuration and license of all network elements');
INSERT INTO "sys_i18n" VALUES (668, 'job.backup_export_table_cdr_event_sgwc', '备份-漫游数据话单表定期导出', 'Backup-Regular Export of Roaming Data table');
INSERT INTO "sys_i18n" VALUES (669, 'cache.name.i18n', '国际化语言管理', 'Internationalized Language Management');
INSERT INTO "sys_i18n" VALUES (670, 'config.sys.user.passwordPolicy', '用户管理-默认密码策略强度', 'User Management-Default Password Policy Strength');
INSERT INTO "sys_i18n" VALUES (671, 'config.sys.user.passwordPolicyRemark', 'minLength密码至少8个字符
specialChars至少包含2个特殊字符例如!@#$%^&*()
uppercase至少包含一个大写字母
lowercase至少包含一个小写字母', 'minLength: password should be at least 8 characters long
specialChars: at least 2 special characters (e.g. ! @#$%^&*())
uppercase: contain at least one uppercase letter
lowercase: contains at least one lowercase letter');
INSERT INTO "sys_i18n" VALUES (672, 'config.sys.user.passwdExpire', '用户管理-密码有效期', 'User Management-Password Expiration Date');
INSERT INTO "sys_i18n" VALUES (673, 'config.sys.user.passwdExpireRemark', '数值单位(小时)
expHours为过期时间0表示不启用
alertHours即将到期提醒时间', 'Numerical unit (hours)
expHours for the expiration time, 0 means not enabled
alertHours upcoming expiration reminder time');
INSERT INTO "sys_i18n" VALUES (674, 'config.sys.user.passwdNotAllowedHistory', '用户管理-不允许使用最近密码次数', 'User Management-Not Allowed Recent Passwords');
INSERT INTO "sys_i18n" VALUES (675, 'config.sys.user.passwdNotAllowedHistoryRemark', '创建新密码不等于之前使用的x次中的密码', 'Creating a new password that is not equal to the previously used password in x times');
INSERT INTO "sys_i18n" VALUES (676, 'login.errPasswdHistory', '不允许使用最近密码', 'Recent passwords not allowed');
INSERT INTO "sys_i18n" VALUES (677, 'log.operate.title.oauth2client', 'Oauth2客户端授权', 'Oauth2 Client Authorization');
INSERT INTO "sys_i18n" VALUES (679, 'dictType.trace_msg_type', '跟踪消息类型', 'Trace Message Type');
INSERT INTO "sys_i18n" VALUES (680, 'dictData.trace_msg_type.0', '请求', 'Request');
INSERT INTO "sys_i18n" VALUES (681, 'dictData.trace_msg_type.1', '响应', 'Response');
INSERT INTO "sys_i18n" VALUES (682, 'dictType.trace_msg_direct', '跟踪消息方向', 'Track Message Direction');
INSERT INTO "sys_i18n" VALUES (683, 'dictData.trace_msg_direct.0', '接收', 'Receive');
INSERT INTO "sys_i18n" VALUES (684, 'dictData.trace_msg_direct.1', '发送', 'Send');
INSERT INTO "sys_i18n" VALUES (685, 'dictData.trace_interfaces.1', 'N1', 'N1');
INSERT INTO "sys_i18n" VALUES (686, 'dictData.trace_interfaces.2', 'N2', 'N2');
INSERT INTO "sys_i18n" VALUES (687, 'dictData.trace_interfaces.3', 'N1/N2', 'N1/N2');
INSERT INTO "sys_i18n" VALUES (688, 'dictData.trace_interfaces.4', 'N4', 'N4');
INSERT INTO "sys_i18n" VALUES (689, 'dictData.trace_interfaces.8', 'N8', 'N8');
INSERT INTO "sys_i18n" VALUES (690, 'dictData.trace_interfaces.10', 'N10', 'N10');
INSERT INTO "sys_i18n" VALUES (691, 'dictData.trace_interfaces.11', 'N11', 'N11');
INSERT INTO "sys_i18n" VALUES (692, 'dictData.trace_interfaces.12', 'N12', 'N12');
INSERT INTO "sys_i18n" VALUES (693, 'dictData.trace_interfaces.13', 'N13', 'N13');
INSERT INTO "sys_i18n" VALUES (694, 'dictData.trace_interfaces.7', 'N7', 'N7');
INSERT INTO "sys_i18n" VALUES (695, 'dictData.trace_interfaces.15', 'N15', 'N15');
INSERT INTO "sys_i18n" VALUES (696, 'dictData.trace_interfaces.17', 'N17', 'N17');
INSERT INTO "sys_i18n" VALUES (697, 'dictData.trace_interfaces.20', 'N20', 'N20');
INSERT INTO "sys_i18n" VALUES (698, 'dictData.trace_interfaces.22', 'N22', 'N22');
INSERT INTO "sys_i18n" VALUES (699, 'dictData.trace_interfaces.40', 'N40', 'N40');
INSERT INTO "sys_i18n" VALUES (700, 'dictData.cdr_sip_code.302', '302 原因不明', '302 Unknown Reason');
INSERT INTO "sys_i18n" VALUES (701, 'dictData.cdr_sip_code.402', '402 原因不明', '402 Unknown Reason');
INSERT INTO "sys_i18n" VALUES (702, 'dictData.cdr_sip_code.480', '480 被叫挂断/拒接', '480 Temporarily Unavailable');
INSERT INTO "sys_i18n" VALUES (703, 'dictData.cdr_sip_code.481', '481 原因不明', '481 Unknown Reason');
INSERT INTO "sys_i18n" VALUES (704, 'dictData.cdr_sip_code.482', '482 发现环路', '482 Loop Detected');
INSERT INTO "sys_i18n" VALUES (705, 'dictData.cdr_sip_code.486', '486 这里很忙', '486 Busy Here');
INSERT INTO "sys_i18n" VALUES (706, 'dictData.cdr_sip_code.489', '489 原因不明', '489 Unknown Reason');
INSERT INTO "sys_i18n" VALUES (707, 'dictData.cdr_sip_code.580', '580 原因不明', '580 Unknown Reason');
INSERT INTO "sys_i18n" VALUES (708, 'alarm.export.alarmType', '告警类型', 'Alarm Type');
INSERT INTO "sys_i18n" VALUES (709, 'alarm.export.origSeverity', '告警级别', 'Severity');
INSERT INTO "sys_i18n" VALUES (710, 'alarm.export.alarmTitle', '告警标题', 'Alarm Title');
INSERT INTO "sys_i18n" VALUES (711, 'alarm.export.eventTime', '告警产生时间', 'Event Time');
INSERT INTO "sys_i18n" VALUES (712, 'alarm.export.alarmId', '告警唯一标识', 'Alarm ID');
INSERT INTO "sys_i18n" VALUES (713, 'alarm.export.clearUser', '告警清除用户', 'Clear User');
INSERT INTO "sys_i18n" VALUES (714, 'alarm.export.clearType', '告警清除类型', 'Clear Type');
INSERT INTO "sys_i18n" VALUES (715, 'alarm.export.clearTime', '告警清除时间', 'Clear Time');
INSERT INTO "sys_i18n" VALUES (716, 'log.operate.title.alarm', '告警', 'Alarm');
INSERT INTO "sys_i18n" VALUES (717, 'ne.common.neType', '网元类型', 'NE Type');
INSERT INTO "sys_i18n" VALUES (718, 'ne.common.neName', '网元名称', 'NE Name');
INSERT INTO "sys_i18n" VALUES (719, 'ne.common.neId', '网元标识', 'NE ID');
INSERT INTO "sys_i18n" VALUES (720, 'log.operate.title.udmVOIP', 'VOIP用户', 'UDM VOIP');
INSERT INTO "sys_i18n" VALUES (721, 'log.operate.title.udmVolteIMS', 'VolteIMS用户', 'UDM VolteIMS');
INSERT INTO "sys_i18n" VALUES (722, 'log.operate.title.backup', '备份', 'Backup');
INSERT INTO "sys_i18n" VALUES (723, 'job.backup_export_table_cdr_event_smsc_remark', 'hour: 数据时间从任务执行时间前的小时数
tableName: 数据表名
columns: 支持字段
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
tableName: data table name
columns: support fields
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
INSERT INTO "sys_i18n" VALUES (724, 'job.backup_export_table_cdr_event_sgwc_remark', 'hour: 数据时间从任务执行时间前的小时数
tableName: 数据表名
columns: 支持字段
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
tableName: data table name
columns: support fields
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
INSERT INTO "sys_i18n" VALUES (725, 'job.backup_remove_file_remark', 'backupPath: 备份路径 /usr/local/omc/backup/{backupPath}
storeDays: 保留天数
storeNum: 保留数量默认保留7', 'backupPath: backup path /usr/local/omc/backup/{backupPath}
storeDays: retention days
storeNum: retention number, default retention 7');
INSERT INTO "sys_i18n" VALUES (726, 'job.backup_export_udm', '备份-UDM数据定期导出', 'Backup-Periodic export of UDM Data');
INSERT INTO "sys_i18n" VALUES (727, 'job.backup_export_udm_remark', 'dataType: 类型支持 auth/sub/voip/volte
fileType: 文件类型 csv/txt', 'Backup-Periodic export of dataType: type support auth/sub/voip/volte
fileType: file type csv/txtUDM Data');
INSERT INTO "sys_i18n" VALUES (728, 'dictData.cdr_sip_code_cause.0', '因其他原因呼叫失败', 'Call failure for other reason');
INSERT INTO "sys_i18n" VALUES (729, 'dictData.cdr_sip_code_cause.200', '正常通话清除', 'Normal Call Clearing');
INSERT INTO "sys_i18n" VALUES (730, 'dictData.cdr_sip_code_cause.202', '申请已被接受处理,但尚未完成 ', 'The request has been accepted for processing, but it hasn it completed yet');
INSERT INTO "sys_i18n" VALUES (731, 'dictData.cdr_sip_code_cause.302', '因其他原因呼叫失败', 'Call failure for other reason');
INSERT INTO "sys_i18n" VALUES (732, 'dictData.cdr_sip_code_cause.402', '因其他原因呼叫失败', 'Call failure for other reason');
INSERT INTO "sys_i18n" VALUES (733, 'dictData.cdr_sip_code_cause.403', '拒绝 MO 用户', 'MO User Rejected');
INSERT INTO "sys_i18n" VALUES (734, 'dictData.cdr_sip_code_cause.404', 'MT 用户离线', 'MT User Offline');
INSERT INTO "sys_i18n" VALUES (735, 'dictData.cdr_sip_code_cause.480', '因其他原因呼叫失败', 'Call failure for other reason');
INSERT INTO "sys_i18n" VALUES (736, 'dictData.cdr_sip_code_cause.481', '电话无法拨出', 'Call cannot be dialed');
INSERT INTO "sys_i18n" VALUES (737, 'dictData.cdr_sip_code_cause.482', '闪断', 'Flashback');
INSERT INTO "sys_i18n" VALUES (738, 'dictData.cdr_sip_code_cause.486', 'MT 用户忙', 'MT User Busy');
INSERT INTO "sys_i18n" VALUES (739, 'dictData.cdr_sip_code_cause.487', 'MO 用户断线', 'MO User Disconnected');
INSERT INTO "sys_i18n" VALUES (740, 'dictData.cdr_sip_code_cause.408', '服务器等待响应的时间过长', 'The server waits too long for a response');
INSERT INTO "sys_i18n" VALUES (741, 'dictData.cdr_sip_code_cause.488', '媒体详细信息与服务器支持的内容不匹配', 'Media details didnt match what the server supports');
INSERT INTO "sys_i18n" VALUES (742, 'dictData.cdr_sip_code_cause.489', '因其他原因呼叫失败', 'Call failure for other reason');
INSERT INTO "sys_i18n" VALUES (743, 'dictData.cdr_sip_code_cause.500', '服务器本身出了问题', 'Something went wrong inside the server itself');
INSERT INTO "sys_i18n" VALUES (744, 'dictData.cdr_sip_code_cause.503', '服务器超载或因维护而停机,无法处理呼叫', 'The server is overloaded or down for maintenance and can it process the call');
INSERT INTO "sys_i18n" VALUES (745, 'dictData.cdr_sip_code_cause.504', '服务器尝试以您的名义与另一台服务器通信,但未及时收到回复,并超时了', 'The server tried to talk to another server on your behalf, didnt get a reply in time, and timed out');
INSERT INTO "sys_i18n" VALUES (746, 'dictData.cdr_sip_code_cause.580', '因其他原因呼叫失败', 'Call failure for other reason');
INSERT INTO "sys_i18n" VALUES (747, 'dictData.cdr_sip_code_cause.603', 'MT 明确拒绝通话', 'MT explicitly rejected the call');
INSERT INTO "sys_i18n" VALUES (748, 'dictData.cdr_sip_code_cause.606', '呼叫已到达用户设备,但会话设置的某些部分不可接受', 'The call reached the users device, but some parts of the session setup weren it acceptable');
INSERT INTO "sys_i18n" VALUES (749, 'dictType.cdr_sip_code_cause', 'IMS-Voice-SIP响应代码类别类型原因', 'IMS-Voice-SIP Response Code Category Type Cause');

View File

@@ -0,0 +1,49 @@
-- ----------------------------
-- Table structure for sys_job
-- ----------------------------
DROP TABLE IF EXISTS "sys_job";
CREATE TABLE "sys_job" (
"job_id" integer NOT NULL,
"job_name" text(64),
"job_group" text(64),
"invoke_target" text(64) NOT NULL,
"target_params" text(2048),
"cron_expression" text(64),
"misfire_policy" text(1),
"concurrent" text(1),
"status_flag" text(1),
"save_log" text(1),
"create_by" text(64),
"create_time" integer(20),
"update_by" text(64),
"update_time" integer(20),
"remark" text(500),
PRIMARY KEY ("job_id")
);
-- ----------------------------
-- Indexes structure for table sys_job
-- ----------------------------
CREATE UNIQUE INDEX "uk_name_group"
ON "sys_job" (
"job_name" ASC,
"job_group" ASC
);
-- ----------------------------
-- Records of sys_job
-- ----------------------------
INSERT INTO "sys_job" VALUES (1, 'job.monitor_sys_resource', 'SYSTEM', 'monitor_sys_resource', '{"interval":5}', '0 0/5 * * * ?', '3', '0', '1', '0', 'system', 1698478134839, 'system', 1698478134839, 'job.monitor_sys_resource_remark');
INSERT INTO "sys_job" VALUES (2, 'job.ne_config_backup', 'SYSTEM', 'ne_config_backup', '', '0 30 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.ne_config_backup_remark');
INSERT INTO "sys_job" VALUES (3, 'job.ne_data_udm', 'SYSTEM', 'ne_data_udm', '', '0 0 0/12 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, '');
INSERT INTO "sys_job" VALUES (4, 'job.ne_alarm_state_check', 'SYSTEM', 'ne_alarm_state_check', '{"alarmTitle":"NE State Check Alarm","alarmType":"2","origSeverity":"2","specificProblem":"alarm cause: the system state of target NE has not been received","specificProblemId":"AC10000","addInfo":""}', '0/30 * * * * ?', '3', '0', '1', '0', 'system', 1698478134839, 'system', 1698478134839, 'job.ne_alarm_state_check_remark');
INSERT INTO "sys_job" VALUES (5, 'job.delete_alarm_record', 'SYSTEM', 'delete_alarm_record', '{"storeDays":7}', '0 10 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.delete_alarm_record_remark');
INSERT INTO "sys_job" VALUES (6, 'job.delete_kpi_record', 'SYSTEM', 'delete_kpi_record', '{"storeDays":7,"neList":["IMS","AMF","UDM","UPF","MME","SMSC","SMF","MME"]}', '0 20 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.delete_kpi_record_remark');
INSERT INTO "sys_job" VALUES (7, 'job.delete_ne_config_backup', 'SYSTEM', 'delete_ne_config_backup', '{"storeDays":7,"storeNum":7}', '0 20 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.delete_ne_config_backup_remark');
INSERT INTO "sys_job" VALUES (21, 'job.backup_export_table_sys_log_operate', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["id","title","business_type","opera_by","opera_url_method","opera_url","opera_ip","status","opera_time","cost_time"],"tableName":"sys_log_operate","backupPath":"/log/operate_log"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_sys_log_operate_remark');
INSERT INTO "sys_job" VALUES (22, 'job.backup_export_table_cdr_event_ims', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["id","record_type","call_type","caller_party","called_party","call_duration","cause","seizure_time","release_time"],"tableName":"cdr_event_ims","backupPath":"/cdr/ims_cdr"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_cdr_event_ims_remark');
INSERT INTO "sys_job" VALUES (23, 'job.backup_export_table_cdr_event_smf', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["id","charging_id","subscription_id_data","subscription_id_type","data_volume_uplink","data_volume_downlink","data_total_volume","invocation_timestamp","user_identifier","ssc_mode","dnn_id","pdu_type","rat_type","pdu_ipv4","pdu_ipv6","network_function_ipv4_address","record_nfId","record_type","record_opening_time"],"tableName":"cdr_event_smf","backupPath":"/cdr/smf_cdr"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_cdr_event_smf_remark');
INSERT INTO "sys_job" VALUES (24, 'job.backup_export_table_cdr_event_smsc', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["id","record_type","service_type","caller_party","called_party","result","update_time"],"tableName":"cdr_event_smsc","backupPath":"/cdr/smsc_cdr"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_cdr_event_smsc_remark');
INSERT INTO "sys_job" VALUES (25, 'job.backup_export_table_cdr_event_sgwc', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["charging_id","served_imsi","served_msisdn","data_volume_gprs_uplink","data_volume_gprs_downlink","duration","invocation_timestamp","pgw_address_used","sgw_address","rat_type","pdp_pdn_type","served_pdppdn_address","serving_node_address","serving_node_type","access_point_name_ni","cause_for_rec_closing","record_sequence_number","local_record_sequence_number","record_type","record_opening_time"],"tableName":"cdr_event_sgwc","backupPath":"/cdr/sgwc_cdr"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_cdr_event_sgwc_remark');
INSERT INTO "sys_job" VALUES (26, 'job.backup_remove_file', 'SYSTEM', 'backup_remove_file', '[{"backupPath":"/log/operate_log","storeDays":30,"storeNum":7},{"backupPath":"/cdr/ims_cdr","storeDays":30},{"backupPath":"/cdr/smf_cdr","storeDays":30},{"backupPath":"/cdr/smsc_cdr","storeDays":30},{"backupPath":"/cdr/sgwc_cdr","storeDays":30},{"backupPath":"/udm_data/auth","storeDays":30},{"backupPath":"/udm_data/sub","storeDays":30},{"backupPath":"/udm_data/voip","storeDays":30},{"backupPath":"/udm_data/volte","storeDays":30}]', '0 10 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_remove_file_remark');
INSERT INTO "sys_job" VALUES (27, 'job.backup_export_udm', 'SYSTEM', 'backup_export_udm', '{"dataType":["auth","sub","voip","volte"],"fileType":"txt"}', '0 35 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'supervisor', 1745481169354, 'job.backup_export_udm_remark');

View File

@@ -0,0 +1,20 @@
-- ----------------------------
-- Table structure for sys_job_log
-- ----------------------------
DROP TABLE IF EXISTS "sys_job_log";
CREATE TABLE "sys_job_log" (
"log_id" integer NOT NULL,
"job_name" text(64) NOT NULL,
"job_group" text(64) NOT NULL,
"invoke_target" text(64) NOT NULL,
"target_params" text(2048),
"job_msg" text(500),
"status_flag" text(1),
"create_time" integer(20),
"cost_time" integer(20),
PRIMARY KEY ("log_id")
);
-- ----------------------------
-- Records of sys_job_log
-- ----------------------------

View File

@@ -0,0 +1,29 @@
-- ----------------------------
-- Table structure for sys_log_login
-- ----------------------------
DROP TABLE IF EXISTS "sys_log_login";
CREATE TABLE "sys_log_login" (
"id" integer NOT NULL,
"user_name" text(32),
"login_ip" text(128),
"login_location" text(128),
"browser" text(64),
"os" text(64),
"status_flag" text(1),
"msg" text(2048),
"login_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table sys_job_log
-- ----------------------------
CREATE INDEX "idx_name_group"
ON "sys_job_log" (
"job_name" ASC,
"job_group" ASC
);
-- ----------------------------
-- Records of sys_log_login
-- ----------------------------

View File

@@ -0,0 +1,25 @@
-- ----------------------------
-- Table structure for sys_log_operate
-- ----------------------------
DROP TABLE IF EXISTS "sys_log_operate";
CREATE TABLE "sys_log_operate" (
"id" integer NOT NULL,
"title" text(64),
"business_type" text(1),
"opera_url" text(200),
"opera_url_method" text(10),
"opera_ip" text(128),
"opera_location" text(128),
"opera_param" text(2000),
"opera_msg" text(2000),
"opera_method" text(128),
"opera_by" text(64),
"opera_time" integer(20),
"status_flag" text(1),
"cost_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of sys_log_operate
-- ----------------------------

View File

@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for sys_log_user_password
-- ----------------------------
DROP TABLE IF EXISTS "sys_log_user_password";
CREATE TABLE "sys_log_user_password" (
"id" integer NOT NULL,
"user_id" integer,
"user_name" text(32),
"password" text(128),
"create_by" text(64),
"create_time" integer,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table sys_log_user_password
-- ----------------------------
CREATE INDEX "idx_id_name_time"
ON "sys_log_user_password" (
"user_id" ASC,
"user_name" ASC,
"create_time" ASC
);
-- ----------------------------
-- Records of sys_log_user_password
-- ----------------------------

View File

@@ -0,0 +1,202 @@
-- ----------------------------
-- Table structure for sys_menu
-- ----------------------------
DROP TABLE IF EXISTS "sys_menu";
CREATE TABLE "sys_menu" (
"menu_id" integer NOT NULL,
"menu_name" text(64) NOT NULL,
"parent_id" integer,
"menu_sort" integer,
"menu_path" text(255),
"component" text(255),
"frame_flag" text(1),
"cache_flag" text(1),
"menu_type" text(1) NOT NULL,
"visible_flag" text(1),
"status_flag" text(1),
"perms" text(128),
"icon" text(128),
"del_flag" text(1),
"create_by" text(64),
"create_time" integer,
"update_by" text(64),
"update_time" integer,
"remark" text(500),
PRIMARY KEY ("menu_id")
);
-- ----------------------------
-- Records of sys_menu
-- ----------------------------
INSERT INTO "sys_menu" VALUES (1, 'menu.system', 0, 16, 'system', '', '1', '1', 'D', '1', '1', '', 'icon-xiangmu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.systemRemark');
INSERT INTO "sys_menu" VALUES (4, 'menu.ne', 0, 3, 'ne', '', '1', '0', 'D', '1', '1', '', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.configRemark');
INSERT INTO "sys_menu" VALUES (5, 'menu.ue', 0, 7, 'ue', '', '1', '0', 'D', '1', '1', '', 'icon-wocanyu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.ueRemark');
INSERT INTO "sys_menu" VALUES (60, 'menu.tools', 0, 60, 'tool', '', '1', '1', 'D', '1', '1', '', 'icon-wenjian', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.toolsRemark');
INSERT INTO "sys_menu" VALUES (61, 'menu.tools.terminal', 60, 20, 'terminal', 'tool/terminal/index', '1', '1', 'M', '1', '1', 'tool:terminal:index', 'icon-suofang', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (62, 'menu.tools.help', 60, 62, 'help', 'tool/help/index', '1', '1', 'M', '0', '1', 'tool:help:list', 'icon-shuoming', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.tools.helpRemark');
INSERT INTO "sys_menu" VALUES (63, 'menu.tools.ps', 60, 8, 'ps', 'tool/ps/index', '1', '0', 'M', '1', '1', 'tool:ps:list', 'icon-zhizuoliucheng', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (64, 'menu.tools.net', 60, 9, 'net', 'tool/net/index', '1', '0', 'M', '1', '1', 'tool:net:list', 'icon-zhizuoliucheng', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (65, 'menu.tools.ping', 60, 4, 'ping', 'tool/ping/index', '1', '0', 'M', '1', '1', 'tool:ping:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (66, 'menu.tools.iperf', 60, 6, 'iperf', 'tool/iperf/index', '1', '0', 'M', '1', '1', 'tool:iperf:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (100, 'menu.security.user', 2113, 1, 'user', 'system/user/index', '1', '1', 'M', '1', '1', 'system:user:list', 'icon-wocanyu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.userRemark');
INSERT INTO "sys_menu" VALUES (101, 'menu.security.role', 2113, 3, 'role', 'system/role/index', '1', '1', 'M', '1', '1', 'system:role:list', 'icon-anzhuo', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.roleRemark');
INSERT INTO "sys_menu" VALUES (102, 'menu.security.roleUser', 2113, 3, 'role/inline/auth-user/:roleId', 'system/role/auth-user', '1', '1', 'M', '0', '1', 'system:role:auth', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.roleUserRemark');
INSERT INTO "sys_menu" VALUES (103, 'menu.system.menu', 1, 10, 'menu', 'system/menu/index', '1', '1', 'M', '1', '1', 'system:menu:list', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.menuRemark');
INSERT INTO "sys_menu" VALUES (104, 'menu.security.dept', 2113, 5, 'dept', 'system/dept/index', '1', '1', 'M', '1', '1', 'system:dept:list', 'icon-yuzhanghao1', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.deptRemark');
INSERT INTO "sys_menu" VALUES (105, 'menu.security.post', 2113, 6, 'post', 'system/post/index', '1', '1', 'M', '1', '1', 'system:post:list', 'icon-gonggaodayi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.postRemark');
INSERT INTO "sys_menu" VALUES (106, 'menu.system.dictType', 1, 30, 'dict', 'system/dict/index', '1', '1', 'M', '1', '1', 'system:dict:list', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.dictTypeRemark');
INSERT INTO "sys_menu" VALUES (107, 'menu.system.dictData', 1, 31, 'dict/inline/data/:dictId', 'system/dict/data', '1', '1', 'M', '0', '1', 'system:dict:data', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.dictDataRemark');
INSERT INTO "sys_menu" VALUES (108, 'menu.system.paramSet', 1, 59, 'config', 'system/config/index', '1', '1', 'M', '1', '1', 'system:config:list', 'icon-gongnengjieshao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.paramSetRemark');
INSERT INTO "sys_menu" VALUES (111, 'menu.system.systemLog', 1, 11, 'log', '', '1', '1', 'D', '0', '0', '', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.systemLogRemark');
INSERT INTO "sys_menu" VALUES (112, 'menu.system.systemInfo', 1, 5, 'system-info', 'monitor/system/info', '1', '1', 'M', '1', '1', 'monitor:system:info', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.systemInfoRemark');
INSERT INTO "sys_menu" VALUES (113, 'menu.system.cacheInfo', 1, 8, 'cache-info', 'monitor/cache/info', '1', '1', 'M', '1', '1', 'monitor:cache:info', 'icon-gongnengjieshao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.cacheInfoRemark');
INSERT INTO "sys_menu" VALUES (114, 'menu.system.cache', 1, 9, 'cache', 'monitor/cache/index', '1', '1', 'M', '1', '1', 'monitor:cache:list', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.cacheRemark');
INSERT INTO "sys_menu" VALUES (115, 'menu.security.onlineUser', 2113, 2, 'online', 'monitor/online/index', '1', '1', 'M', '1', '1', 'monitor:online:list', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.onlineUserRemark');
INSERT INTO "sys_menu" VALUES (116, 'menu.system.job', 1, 20, 'job', 'monitor/job/index', '1', '1', 'M', '1', '1', 'monitor:job:list', 'icon-lishi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.jobRemark');
INSERT INTO "sys_menu" VALUES (117, 'menu.system.jobLog', 1, 21, '/system/job/inline/log/:jobId', 'monitor/job/log', '1', '1', 'M', '0', '1', 'monitor:job:log', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.jobLogRemark');
INSERT INTO "sys_menu" VALUES (500, 'menu.log.operat', 2089, 25, 'operate', 'system/log/operate/index', '1', '1', 'M', '1', '1', 'system:log:operate:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.operatRemark');
INSERT INTO "sys_menu" VALUES (501, 'menu.log.login', 2089, 26, 'login', 'system/log/login/index', '1', '1', 'M', '1', '1', 'system:log:login:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.loginRemark');
INSERT INTO "sys_menu" VALUES (1000, 'menu.common.query', 100, 1, '', '', '1', '1', 'B', '1', '1', 'system:user:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1001, 'menu.common.add', 100, 2, '', '', '1', '1', 'B', '1', '1', 'system:user:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1002, 'menu.common.edit', 100, 3, '', '', '1', '1', 'B', '1', '1', 'system:user:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1003, 'menu.common.delete', 100, 4, '', '', '1', '1', 'B', '1', '1', 'system:user:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1004, 'menu.common.export', 100, 5, '', '', '1', '1', 'B', '1', '1', 'system:user:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1005, 'menu.common.import', 100, 6, '', '', '1', '1', 'B', '1', '1', 'system:user:import', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1006, 'menu.common.resetPwd', 100, 7, '', '', '1', '1', 'B', '1', '1', 'system:user:resetPwd', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1007, 'menu.common.query', 101, 1, '', '', '1', '1', 'B', '1', '1', 'system:role:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1008, 'menu.common.add', 101, 2, '', '', '1', '1', 'B', '1', '1', 'system:role:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1009, 'menu.common.edit', 101, 3, '', '', '1', '1', 'B', '1', '1', 'system:role:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1010, 'menu.common.delete', 101, 4, '', '', '1', '1', 'B', '1', '1', 'system:role:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1011, 'menu.common.export', 101, 5, '', '', '1', '1', 'B', '1', '1', 'system:role:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1012, 'menu.common.query', 103, 1, '', '', '1', '1', 'B', '1', '1', 'system:menu:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1013, 'menu.common.add', 103, 2, '', '', '1', '1', 'B', '1', '1', 'system:menu:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1014, 'menu.common.edit', 103, 3, '', '', '1', '1', 'B', '1', '1', 'system:menu:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1015, 'menu.common.delete', 103, 4, '', '', '1', '1', 'B', '1', '1', 'system:menu:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1016, 'menu.common.query', 104, 1, '', '', '1', '1', 'B', '1', '1', 'system:dept:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1017, 'menu.common.add', 104, 2, '', '', '1', '1', 'B', '1', '1', 'system:dept:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1018, 'menu.common.edit', 104, 3, '', '', '1', '1', 'B', '1', '1', 'system:dept:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1019, 'menu.common.delete', 104, 4, '', '', '1', '1', 'B', '1', '1', 'system:dept:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1020, 'menu.common.query', 105, 1, '', '', '1', '1', 'B', '1', '1', 'system:post:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1021, 'menu.common.add', 105, 2, '', '', '1', '1', 'B', '1', '1', 'system:post:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1022, 'menu.common.edit', 105, 3, '', '', '1', '1', 'B', '1', '1', 'system:post:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1023, 'menu.common.delete', 105, 4, '', '', '1', '1', 'B', '1', '1', 'system:post:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1024, 'menu.common.export', 105, 5, '', '', '1', '1', 'B', '1', '1', 'system:post:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1025, 'menu.common.query', 106, 1, '#', '', '1', '1', 'B', '1', '1', 'system:dict:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1026, 'menu.common.add', 106, 2, '#', '', '1', '1', 'B', '1', '1', 'system:dict:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1027, 'menu.common.edit', 106, 3, '#', '', '1', '1', 'B', '1', '1', 'system:dict:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1028, 'menu.common.delete', 106, 4, '#', '', '1', '1', 'B', '1', '1', 'system:dict:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1029, 'menu.common.export', 106, 5, '#', '', '1', '1', 'B', '1', '1', 'system:dict:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1030, 'menu.common.query', 108, 1, '#', '', '1', '1', 'B', '1', '1', 'system:config:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1031, 'menu.common.add', 108, 2, '#', '', '1', '1', 'B', '1', '1', 'system:config:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1032, 'menu.common.edit', 108, 3, '#', '', '1', '1', 'B', '1', '1', 'system:config:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1033, 'menu.common.delete', 108, 4, '#', '', '1', '1', 'B', '1', '1', 'system:config:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1034, 'menu.common.export', 108, 5, '#', '', '1', '1', 'B', '1', '1', 'system:config:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1039, 'menu.common.query', 500, 1, '#', '', '1', '1', 'B', '1', '1', 'system:log:operate:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1040, 'menu.common.delete', 500, 2, '#', '', '1', '1', 'B', '1', '1', 'system:log:operate:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1041, 'menu.common.export', 500, 3, '#', '', '1', '1', 'B', '1', '1', 'system:log:operate:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1042, 'menu.common.query', 501, 1, '#', '', '1', '1', 'B', '1', '1', 'system:log:login:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1043, 'menu.common.delete', 501, 2, '#', '', '1', '1', 'B', '1', '1', 'system:log:login:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1044, 'menu.common.export', 501, 3, '#', '', '1', '1', 'B', '1', '1', 'system:log:login:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1045, 'menu.common.unlock', 501, 4, '#', '', '1', '1', 'B', '1', '1', 'system:log:login:unlock', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1046, 'menu.common.query', 114, 1, '#', '', '1', '1', 'B', '1', '1', 'monitor:cache:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1047, 'menu.common.delete', 114, 2, '#', '', '1', '1', 'B', '1', '1', 'monitor:cache:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1048, 'menu.common.query', 115, 1, '#', '', '1', '1', 'B', '1', '1', 'monitor:online:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1049, 'menu.forcedQuit.batch ', 115, 2, '#', '', '1', '1', 'B', '1', '1', 'monitor:online:batchLogout', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1050, 'menu.forcedQuit.single', 115, 3, '#', '', '1', '1', 'B', '1', '1', 'monitor:online:forceLogout', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1051, 'menu.common.query', 116, 1, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1052, 'menu.common.add', 116, 2, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1053, 'menu.common.edit', 116, 3, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1054, 'menu.common.delete', 116, 4, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1055, 'menu.common.edit', 116, 5, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:changeStatus', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (1056, 'menu.common.export', 116, 6, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2000, 'menu.neData.udmAuth', 5, 1, 'udm-auth', 'neData/udm-auth/index', '1', '1', 'M', '1', '1', 'udm:auth:index', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2001, 'menu.neData.udmSub', 5, 3, 'udm-sub', 'neData/udm-sub/index', '1', '1', 'M', '1', '1', 'udm:sub:index', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2002, 'menu.neData.udmVOIP', 5, 5, 'udm-voip', 'neData/udm-voip/index', '1', '0', 'M', '1', '1', 'udm:voip:list', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2003, 'menu.neData.udmVolte', 5, 7, 'udm-volte', 'neData/udm-volte/index', '1', '0', 'M', '1', '1', 'udm:volte:list', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2004, 'menu.neData.imsSub', 5, 9, 'ims-sub', 'neData/ims-sub/index', '1', '0', 'M', '1', '1', 'ims:sub:index', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2005, 'menu.neData.smfSub', 5, 12, 'smf-sub', 'neData/smf-sub/index', '1', '0', 'M', '1', '1', 'smf:sub:index', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2006, 'menu.neData.baseOnline', 5, 15, 'base-online', 'neData/base-online/index', '1', '0', 'M', '0', '1', 'amf,mme:base-online:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2007, 'menu.neData.baseStation', 5, 18, 'base-station', 'neData/base-station/index', '1', '0', 'M', '1', '1', 'amf,mme:base-station:list', 'icon-fenxiang', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2008, 'menu.ueUser.n3iwf', 5, 20, 'n3iwf', 'neUser/n3iwf/index', '1', '0', 'M', '0', '1', 'neUser:n3iwf:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2009, 'menu.neData.pcfSub', 5, 24, 'pcf-sub', 'neData/pcf-sub/index', '1', '0', 'M', '1', '1', 'pcf:sub:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2010, 'menu.neUser.nssf', 5, 26, 'nssf', 'neUser/nssf/index', '1', '0', 'M', '0', '1', 'neUser:nssf:index', 'icon-daimayingyong', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2011, 'menu.neUser.nssfAmf', 5, 28, 'nssfAmf', 'neUser/nssfAmf/index', '1', '0', 'M', '0', '1', 'neUser:nssfAmf:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2083, 'menu.trace', 2087, 30, 'traceManage', '', '1', '0', 'D', '1', '1', '', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.traceRemark');
INSERT INTO "sys_menu" VALUES (2084, 'menu.trace.task', 2083, 1, 'task', 'traceManage/task/index', '1', '0', 'M', '1', '1', 'traceManage:task:index', 'icon-chexiao', '0', 'system', 1728641403588, 'system', 1744453890548, 'menu.trace.taskRemark');
INSERT INTO "sys_menu" VALUES (2085, 'menu.trace.taskData', 2083, 4, 'task/inline/data', 'traceManage/task/data', '1', '0', 'M', '0', '1', 'traceManage:task:data', '#', '0', 'system', 1728641403588, 'system', 1744453921381, '');
INSERT INTO "sys_menu" VALUES (2086, 'menu.trace.pcap', 2083, 11, 'pcap', 'traceManage/pcap/index', '1', '1', 'M', '1', '1', 'traceManage:pcap:index', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.trace.pcapRemark');
INSERT INTO "sys_menu" VALUES (2087, 'menu.fault', 0, 2, 'faultManage', '', '1', '0', 'D', '1', '1', '', 'icon-jinggao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.faultRemark');
INSERT INTO "sys_menu" VALUES (2088, 'menu.fault.active', 2129, 1, 'active-alarm', 'faultManage/active-alarm/index', '1', '1', 'M', '1', '1', 'faultManage:active-alarm:index', 'icon-wenjian', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.fault.activemRemark');
INSERT INTO "sys_menu" VALUES (2089, 'menu.log', 0, 9, 'logManage', '', '1', '0', 'D', '1', '1', '', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.logRemark');
INSERT INTO "sys_menu" VALUES (2091, 'menu.log.mml', 2089, 30, 'mml', 'logManage/mml/index', '1', '1', 'M', '1', '1', 'logManage:mml:index', 'icon-wocanyu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.mmlRemark');
INSERT INTO "sys_menu" VALUES (2092, 'menu.log.alarm', 2089, 40, 'alarm-log', 'logManage/alarm/index', '1', '0', 'M', '1', '1', 'logManage:alarm:index', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.alarmRemark');
INSERT INTO "sys_menu" VALUES (2094, 'menu.log.forwarding', 2089, 41, 'forwarding', 'logManage/forwarding/index', '1', '0', 'M', '1', '1', 'logManage:forwarding:index', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.forwardingRemark');
INSERT INTO "sys_menu" VALUES (2095, 'menu.log.set', 2089, 45, 'logSet', 'logManage/logSet/index', '1', '0', 'M', '0', '0', 'logManage:logSet:index', 'icon-you', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.setRemark');
INSERT INTO "sys_menu" VALUES (2096, 'menu.neData.backupData', 5, 40, 'backup-data', 'neData/backup-data/index', '1', '0', 'M', '1', '1', 'ne-data:backup-data:list', 'icon-wenjian', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2097, 'menu.fault.history', 2129, 2, 'history-alarm', 'faultManage/history-alarm/index', '1', '1', 'M', '1', '1', 'faultManage/history-alarm/index', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.fault.historyRemark');
INSERT INTO "sys_menu" VALUES (2098, 'menu.fault.set', 2129, 100, 'fault-setting', 'faultManage/fault-setting/index', '1', '0', 'M', '0', '1', 'faultManage/fault-setting/index', 'icon-gonggaodayi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.fault.setRemark');
INSERT INTO "sys_menu" VALUES (2099, 'menu.perf', 0, 5, 'perfManage', '', '1', '0', 'D', '1', '1', '', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perfRemark');
INSERT INTO "sys_menu" VALUES (2100, 'menu.perf.task', 2099, 1, 'taskManage', 'perfManage/taskManage/index', '1', '0', 'M', '0', '1', 'perfManage:taskManage:index', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.taskRemark');
INSERT INTO "sys_menu" VALUES (2101, 'menu.perf.data', 2099, 2, 'perfData', 'perfManage/perfData/index', '1', '0', 'M', '0', '1', 'perfManage:perfData:index', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.dataRemark');
INSERT INTO "sys_menu" VALUES (2102, 'menu.perf.kpiOverView', 2099, 10, 'kpiOverView', 'perfManage/kpiOverView/index', '1', '0', 'M', '1', '1', 'perfManage:perfReport:index', 'icon-gonggaodayi', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2103, 'menu.perf.threshold', 2099, 4, 'perfThreshold', 'perfManage/perfThreshold/index', '1', '0', 'M', '0', '0', 'perfManage:perfThreshold:index', 'icon-zhuanrang', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.thresholdRemark');
INSERT INTO "sys_menu" VALUES (2104, 'menu.perf.kpi', 2099, 20, 'goldTarget', 'perfManage/goldTarget/index', '1', '1', 'M', '1', '1', 'perfManage:goldTarget:index', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.kpiRemark');
INSERT INTO "sys_menu" VALUES (2105, 'menu.perf.customTarget', 2099, 99, 'customTarget', 'perfManage/customTarget/index', '1', '0', 'M', '1', '1', 'perfManage:customTarget:index', 'icon-fanhui1', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.customTargetRemark');
INSERT INTO "sys_menu" VALUES (2106, 'menu.perf.kpiKeyTarget', 2099, 12, 'kpiKeyTarget', 'perfManage/kpiKeyTarget/index', '1', '0', 'M', '1', '1', 'perfManage:kpiKeyTarget:index', 'icon-fuzhichenggong', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2107, 'menu.mml', 0, 8, 'mmlManage', '', '1', '0', 'D', '1', '1', '', 'icon-zhizuoliucheng', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mmlRemark');
INSERT INTO "sys_menu" VALUES (2108, 'menu.mml.ne', 2107, 1, 'neOperate', 'mmlManage/neOperate/index', '1', '1', 'M', '1', '1', 'mmlManage:neOperate:index', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mml.neRemark');
INSERT INTO "sys_menu" VALUES (2109, 'menu.mml.udm', 2107, 2, 'udmOperate', 'mmlManage/udmOperate/index', '1', '1', 'M', '1', '1', 'mmlManage:udmOperate:index', 'icon-gonggaodayi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mml.udmRemark');
INSERT INTO "sys_menu" VALUES (2110, 'menu.mml.set', 2107, 4, 'mmlSet', 'mmlManage/mmlSet/index', '1', '0', 'M', '1', '1', 'mmlManage:mmlSet:index', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mml.setRemark');
INSERT INTO "sys_menu" VALUES (2111, 'menu.mml.omc', 2107, 3, 'omcOperate', 'mmlManage/omcOperate/index', '1', '1', 'M', '1', '1', 'mmlManage:omcOperate:index', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mml.omcRemark');
INSERT INTO "sys_menu" VALUES (2112, 'menu.dashboard.sgwcCDR', 2140, 12, 'sgwcCDR', 'dashboard/sgwcCDR/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2113, 'menu.security', 0, 14, 'security', '', '1', '0', 'D', '1', '1', '', 'icon-suofang', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.securityRemark');
INSERT INTO "sys_menu" VALUES (2114, 'menu.system.systemSet', 1, 60, 'setting', 'system/setting/index', '1', '1', 'M', '1', '1', 'system:setting:index', 'icon-piliang', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.systemSetRemark');
INSERT INTO "sys_menu" VALUES (2115, 'menu.system.systemResource', 1, 6, 'monitor', 'monitor/monitor/index', '1', '1', 'M', '1', '1', 'monitor:monitor:info', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.systemResourceRemark');
INSERT INTO "sys_menu" VALUES (2116, 'menu.dashboard.smscCDR.content', 2157, 1, '', '', '1', '1', 'B', '1', '1', 'cdr:smsc:content', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2117, 'menu.common.delete', 2140, 1, '', '', '1', '1', 'B', '1', '1', 'cdr:ne:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2118, 'menu.dashboard.smfCDRByIMSI', 2140, 7, 'smfCDRByIMSI', 'dashboard/smfCDRByIMSI/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-gerenzhanghu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2121, 'menu.system.user.editRole', 100, 8, '', '', '1', '1', 'B', '1', '1', 'system:user:editRole', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2122, 'menu.system.setting.i18n', 2114, 1, '', '', '1', '1', 'B', '1', '1', 'system:setting:i18n', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.setting.i18nRemark');
INSERT INTO "sys_menu" VALUES (2123, 'menu.log.neFile', 2089, 9, 'neFile', 'ne/neFile/index', '1', '0', 'M', '1', '1', 'ne:neFile:index', 'icon-tubiaohuizhi', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2126, 'menu.monitor.topology', 2130, 10, 'topology', 'monitor/topology/index', '1', '0', 'M', '1', '1', 'monitor:topology:index', 'icon-fangda', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2127, 'menu.monitor.topologyBuild', 2130, 30, 'topologyBuild', 'monitor/topologyBuild/index', '1', '0', 'M', '1', '1', 'monitor:topologyBuild:index', 'icon-fangda', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2128, 'menu.monitor.topologyArchitecture', 2130, 20, 'topologyArchitecture', 'monitor/topologyArchitecture/index', '1', '0', 'M', '1', '1', 'monitor:topologyArchitecture:index', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2129, 'menu.alarm', 2087, 20, 'alarm', '', '1', '0', 'D', '1', '1', '', 'icon-jinggao', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2130, 'menu.topology', 2087, 10, 'topology', '', '1', '0', 'D', '1', '1', '', 'icon-anzhuo', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2131, 'menu.dashboard', 2087, 15, 'dashboard', '', '1', '0', 'D', '0', '0', '', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2132, 'menu.dashboard.overview', 2087, 1, 'overview', 'dashboard/overview/index', '1', '0', 'M', '1', '1', 'dashboard:overview:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2133, 'menu.dashboard.imsCDR', 2140, 3, 'imsCDR', 'dashboard/imsCDR/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2135, 'menu.ne.neHost', 4, 15, 'neHost', 'ne/neHost/index', '1', '1', 'M', '1', '0', 'ne:neHost:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2136, 'menu.ne.neHostCommand', 4, 18, 'neHostCommand', 'ne/neHostCommand/index', '1', '0', 'M', '1', '0', 'ne:neHostCommand:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2137, 'menu.ne.neInfo', 4, 10, 'neInfo', 'ne/neInfo/index', '1', '0', 'M', '1', '1', 'ne:neInfo:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2138, 'menu.dashboard.amfUE', 2141, 1, 'amfUE', 'dashboard/amfUE/index', '1', '0', 'M', '1', '1', 'dashboard:amfUE:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2140, 'menu.monitor.cdr', 2089, 10, 'cdr', '', '1', '0', 'D', '1', '1', '', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2141, 'menu.monitor.event', 2089, 20, 'event', '', '1', '0', 'D', '1', '1', '', 'icon-gengduo', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2142, 'menu.ne.neQuickSetup', 4, 40, 'neQuickSetup', 'ne/neQuickSetup/index', '1', '1', 'M', '1', '1', 'ne:neQuickSetup:list', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2143, 'menu.ne.neLicense', 4, 20, 'neLicense', 'ne/neLicense/index', '1', '0', 'M', '1', '1', 'ne:neLicense:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2144, 'menu.ne.neSoftware', 4, 23, 'neSoftware', 'ne/neSoftware/index', '1', '0', 'M', '1', '1', 'ne:neSoftware:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2145, 'menu.ne.neVersion', 4, 26, 'neVersion', 'ne/neVersion/index', '1', '0', 'M', '1', '1', 'ne:neVersion:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2146, 'menu.ne.neConfig', 4, 28, 'neConfig', 'ne/neConfig/index', '1', '0', 'M', '1', '1', 'ne:neConfig:list', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2147, 'menu.fault.event', 2129, 3, 'event', 'faultManage/event/index', '1', '0', 'M', '1', '1', 'faultManage:event:index', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2148, 'menu.dashboard.smfCDR', 2140, 6, 'smfCDR', 'dashboard/smfCDR/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2149, 'menu.dashboard.mmeUE', 2141, 5, 'mmeUE', 'dashboard/mmeUE/index', '1', '0', 'M', '1', '1', 'dashboard:mmeUE:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2150, 'menu.system.user.editPost', 100, 9, '', '', '1', '1', 'B', '1', '1', 'system:user:editPost', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2151, 'menu.system.setting.doc', 2114, 2, '', '', '1', '1', 'B', '1', '1', 'system:setting:doc', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2152, 'menu.system.setting.official', 2114, 3, '', '', '1', '1', 'B', '1', '1', 'system:setting:official', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2153, 'menu.system.setting.lock', 2114, 4, '', '', '1', '1', 'B', '1', '1', 'system:setting:lock', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2154, 'menu.ne.neConfigBackup', 4, 29, 'neConfigBackup', 'ne/neConfigBackup/index', '1', '0', 'M', '1', '1', 'ne:neConfigBackup:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2155, 'menu.common.delete', 2154, 1, '#', '', '1', '1', 'B', '1', '1', 'ne:neConfigBackup:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2156, 'menu.common.edit', 2154, 2, '#', '', '1', '1', 'B', '1', '1', 'ne:neConfigBackup:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2157, 'menu.dashboard.smscCDR', 2140, 9, 'smscCDR', 'dashboard/smscCDR/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2158, 'menu.trace.pcapFile', 2083, 12, 'pcap/inline/file', 'traceManage/pcap/file', '1', '0', 'M', '0', '1', 'traceManage:pcap:index', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2159, 'menu.log.exportFile', 2089, 100, 'exportFile', 'logManage/exportFile/index', '1', '0', 'M', '1', '1', 'logManage:exportFile:index', 'icon-wenjian', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2160, 'menu.perf.kpiCReport', 2099, 100, 'kpiCReport', 'perfManage/kpiCReport/index', '1', '0', 'M', '1', '1', 'perfManage:kpiCReport:index', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2161, 'menu.trace.taskHLR', 2083, 6, 'taskHLR', 'traceManage/task-hlr/index', '1', '0', 'M', '0', '1', 'traceManage:taskHLR:index', 'icon-chexiao', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2162, 'menu.trace.taskAnalyze', 2083, 2, 'task/inline/analyze', 'traceManage/task/analyze', '1', '0', 'M', '0', '1', 'traceManage:task:analyze', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2163, 'menu.trace.tshark', 2083, 14, 'tshark', 'traceManage/tshark/index', '1', '0', 'M', '1', '1', 'traceManage:tshark:index', 'icon-gengduo', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2164, 'menu.trace.wireshark', 2083, 16, 'wireshark', 'traceManage/wireshark/index', '1', '0', 'M', '1', '1', 'traceManage:wireshark:index', 'icon-gengduo', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2165, 'menu.ne.neOverview', 4, 1, 'neOverview', 'configManage/neOverview/index', '1', '0', 'M', '1', '1', 'configManage:neOverview:index', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.ne.neOverviewRemark');
INSERT INTO "sys_menu" VALUES (2166, 'menu.dashboard.overview.smfUeNum', 2132, 4, '', '', '1', '1', 'B', '1', '1', 'dashboard:overview:smfUeNum', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2167, 'menu.dashboard.overview.imsUeNum', 2132, 2, '', '', '1', '1', 'B', '1', '1', 'dashboard:overview:imsUeNum', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2168, 'menu.dashboard.overview.gnbBase', 2132, 6, '', '', '1', '1', 'B', '1', '1', 'dashboard:overview:gnbBase', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
INSERT INTO "sys_menu" VALUES (2169, 'menu.dashboard.overview.enbBase', 2132, 8, '', '', '1', '1', 'B', '1', '1', 'dashboard:overview:enbBase', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');

View File

@@ -0,0 +1,26 @@
-- ----------------------------
-- Table structure for sys_post
-- ----------------------------
DROP TABLE IF EXISTS "sys_post";
CREATE TABLE "sys_post" (
"post_id" integer NOT NULL,
"post_code" text(64) NOT NULL,
"post_name" text(64) NOT NULL,
"post_sort" integer(11),
"status_flag" text(1),
"del_flag" text(1),
"create_by" text(64),
"create_time" integer(20),
"update_by" text(64),
"update_time" integer(20),
"remark" text(500),
PRIMARY KEY ("post_id")
);
-- ----------------------------
-- Records of sys_post
-- ----------------------------
INSERT INTO "sys_post" VALUES (1, 'administator', 'post.admin', 1, '1', '0', 'system', 1697110106499, '', 0, '');
INSERT INTO "sys_post" VALUES (2, 'operator', 'post.operator', 2, '1', '0', 'system', 1697110106499, '', 0, '');
INSERT INTO "sys_post" VALUES (3, 'monitor', 'post.monitor', 3, '1', '0', 'system', 1697110106499, '', 0, '');
INSERT INTO "sys_post" VALUES (4, 'visitor', 'post.visitor', 4, '1', '0', 'system', 1697110106499, '', 0, '');

View File

@@ -0,0 +1,30 @@
-- ----------------------------
-- Table structure for sys_role
-- ----------------------------
DROP TABLE IF EXISTS "sys_role";
CREATE TABLE "sys_role" (
"role_id" integer NOT NULL,
"role_name" text(64) NOT NULL,
"role_key" text(64) NOT NULL,
"role_sort" integer(11),
"data_scope" text(1),
"menu_check_strictly" text(1),
"dept_check_strictly" text(1),
"status_flag" text(1),
"del_flag" text(1),
"create_by" text(64),
"create_time" integer(20),
"update_by" text(64),
"update_time" integer(20),
"remark" text(200),
PRIMARY KEY ("role_id")
);
-- ----------------------------
-- Records of sys_role
-- ----------------------------
INSERT INTO "sys_role" VALUES (1, 'role.system', 'system', 1, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.systemRemark');
INSERT INTO "sys_role" VALUES (2, 'role.admin', 'admin', 2, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.adminRemark');
INSERT INTO "sys_role" VALUES (3, 'role.operator', 'operator', 3, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.operatorRemark');
INSERT INTO "sys_role" VALUES (4, 'role.monitor', 'monitor', 4, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.monitorRemark');
INSERT INTO "sys_role" VALUES (5, 'role.vistor', 'vistor', 5, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.vistorRemark');

Some files were not shown because too many files have changed in this diff Show More