add: 打包脚本

This commit is contained in:
TsMask
2024-03-19 16:46:48 +08:00
parent 93754d1c1d
commit 2c6c3ab756
360 changed files with 39437 additions and 62 deletions

172
build.sh Normal file
View File

@@ -0,0 +1,172 @@
#!/bin/bash
ProjectL=omc
ProjectU=OMC
PROJECT=${ProjectL}
VERSION=2.2403.1
RelDate=`date +%Y%m%d`
RelVer=${VERSION}-${RelDate}
Ky10Arch=ky10.aarch64
RpmPkgName=${ProjectL}-${RelVer}.ky10.aarch64.rpm
RpmPkgRename=${ProjectL}-r${RelVer}-ky10.rpm
DebPkgName=${ProjectL}-r${RelVer}-ub*.deb
GitLocalRoot=/home/agtuser/probject/nms_cxy
EmsBEDir=/home/agtuser/probject/nms_cxy
EmsBuildRoot=/home/agtuser/probject/nms_cxy/build
RpmArch=`arch`
RpmsDir=/home/agtuser/probject/nms_cxy/build/rpmbuild/RPMS/
ReleaseDir=/home/agtuser/probject/nms_cxy/build/release
PLATFORM=amd64
ARMPLATFORM=aarch64
BuildDir=/home/agtuser/probject/nms_cxy/build/build
BuildOMCDir=/home/agtuser/probject/nms_cxy/build/build/usr/local/omc
BuildOMCBinDir=/home/agtuser/probject/nms_cxy/build/build/usr/local/omc/bin
BuildOMCEtcDir=/home/agtuser/probject/nms_cxy/build/build/usr/local/omc/etc
BuildLibSystemDir=/home/agtuser/probject/nms_cxy/build/build/lib/systemd/system
DebBuildDir=/home/agtuser/probject/nms_cxy/build/debbuild
DebFEBuildDir=/home/agtuser/probject/nms_cxy/build/debbuild/usr/local/omc/htdocs
DebBuild2204Dir=/home/agtuser/probject/nms_cxy/build/debbuild/22.04
DebFEBuild2204Dir=/home/agtuser/probject/nms_cxy/build/debbuild/22.04/usr/local/omc/htdocs
RpmBuildDir=/home/agtuser/probject/nms_cxy/build/rpmbuild
RpmFEBuildDir=/home/agtuser/probject/nms_cxy/build/rpmbuild/BUILD/usr/local/omc/htdocs
OmcInstallDir=/usr/local/omc
ConfigEtcDir=/home/agtuser/probject/nms_cxy/build/config/etc
ConfigSystemdDir=/home/agtuser/probject/nms_cxy/build/config/systemd
EmsFEVue3Dir=/home/agtuser/Docker/nginx/html/dist
RESTAGENT=restagent
CRONTASK=crontask
SshSvcBin=sshsvc
CapTraceBin=captrace
Data2htmlBin=data2html
NBI_ALARM=nbi_alarm
NBI_AGENT=nbi_agent
AAAA_AGENT=4a_agent
RestagentDir=/usr/local/omc/bin
CrontaskDir=/usr/local/omc/bin
SshSvcDir=/usr/local/omc/bin
CapTraceDir=/usr/local/omc/bin
Data2htmlDir=/usr/local/omc/bin
DBSQLSrcDir=/home/agtuser/probject/nms_cxy/build/database
MiscDir=/home/agtuser/probject/nms_cxy/build/misc
FrontBuildDir=/home/agtuser/probject/nms_cxy/build/build/usr/local/omc/htdocs
ReleaseDebs=/home/agtuser/probject/nms_cxy/build/release/debs/amd64
CrontaskSize=27788951
RestagentSize=29525312
if [[ ${RpmArch} =~ "x86_64" ]];then
RelArch=amd64
elif [[ ${RpmArch} =~ "aarch64" ]];then
RelArch=arm64
fi
ProcList="restagent"
cd $EmsBEDir
for procName in $ProcList;do
cd $EmsBEDir/$procName
echo "Make $procName ..."
make
done
case "$1" in
rpm)
# make rpm
# clear build cache
rm -rf ${FrontBuildDir}/front/*
rm -rf ${RpmFEBuildDir}/front/*
rm -rf /home/agtuser/probject/nms_cxy/build/rpmbuild/BUILD/usr/local/omc/etc/db/*
cp -rf ${RestagentDir}/restagent ${BuildOMCBinDir}
cp -rf ${CrontaskDir}/crontask ${BuildOMCBinDir}
cp -rf ${SshSvcDir}/sshsvc ${BuildOMCBinDir}
cp -rf ${CapTraceDir}/captrace ${BuildOMCBinDir}
cp -rf ${Data2htmlDir}/data2html ${BuildOMCBinDir}
# cp -rf ${MiscDir}/ne-hosts ${BuildOMCBinDir}
# cp -rf ./nbi/${NBI_ALARM}/bin/${NBI_ALARM} ${BinDir2}
# cp -rf ./nbi/${NBI_AGENT}/bin/${NBI_AGENT} ${BinDir2}
# cp -rf ./${4A_AGENT}/bin/${4A_AGENT} ${BinDir2}
cp -rf ${MiscDir}/* ${BuildOMCBinDir}
# rm -rf ${BinDir2}/ne-hosts
cp -rf ${ConfigEtcDir}/* ${BuildOMCEtcDir}
rm -rf ${BuildOMCEtcDir}/db/*
cp -rf ${DBSQLSrcDir}/* ${BuildOMCEtcDir}/db/
cp -rf ${BuildOMCEtcDir}/db/common/* ${BuildOMCEtcDir}/db/install
cp -rf ${BuildOMCEtcDir}/db/common/* ${BuildOMCEtcDir}/db/upgrade
cp -rf ${BuildOMCEtcDir}/db/common/* ${BuildOMCEtcDir}/db/upgvue3
cp -rf ${ConfigSystemdDir}/* ${BuildLibSystemDir}
#unzip ${FrontSrcDir}/front.zip -d ${FrontBuildDir} >/dev/null
mkdir -p ${FrontBuildDir}/front
cp -rf ${EmsFEVue3Dir}/* ${FrontBuildDir}/front >/dev/null
chmod 755 ${BuildOMCBinDir}/*
# chmod 755 ${BinDir2}/*
cp -rf /home/agtuser/probject/nms_cxy/build/build/* /home/agtuser/probject/nms_cxy/build/rpmbuild/BUILD/
#cp -rf /home/agtuser/probject/nms_cxy/build/build/nginx /home/agtuser/probject/nms_cxy/build/rpmbuild/BUILD/etc/
#cp -rf /home/agtuser/probject/nms_cxy/build/build/systemd /home/agtuser/probject/nms_cxy/build/rpmbuild/BUILD/lib/
cd /home/agtuser/probject/nms_cxy/build/rpmbuild
rpmbuild -bb -D "_topdir /home/agtuser/probject/nms_cxy/build/rpmbuild" /home/agtuser/probject/nms_cxy/build/rpmbuild/SPECS/omc.spec
mv -f $RpmsDir/$RpmArch/$RpmPkgName $ReleaseDir/"$1"s/$RelArch/$RpmPkgRename
cd $ReleaseDir/"$1"s/$RelArch
rm -f omc-md5sum.txt
md5sum $RpmPkgRename >omc-md5sum.txt
;;
deb)
VersionID=`grep VERSION_ID /etc/os-release`
if [[ ${VersionID} =~ 'VERSION_ID="22.04"' ]]; then
DebBuildDir=${DebBuild2204Dir}
DebFEBuildDir=${DebFEBuild2204Dir}
#DebPkgFile=${PROJECT}-${VERSION}-22.04-${Release).${PLATFORM).deb
DebPkgFile=${PROJECT}-r${VERSION}-${RelDate}-ub22.deb
elif [[ ${VersionID} =~ 'VERSION_ID="18.04"' ]]; then
DebPkgFile=${PROJECT}-r${VERSION}-${RelDate}-ub18.deb
else
echo "Invalid OS release: ${VersionID}"
exit 1
fi
cd /home/agtuser/probject/nms_cxy
#make deb
# clear build cache
rm -rf ${FrontBuildDir}/front/*
rm -rf ${DebFEBuildDir}/front/*
rm -rf ${DebBuildDir}/usr/local/omc/etc/db/*
cp -rf ${RestagentDir}/restagent ${BuildOMCBinDir}
cp -rf ${CrontaskDir}/crontask ${BuildOMCBinDir}
cp -rf ${SshSvcDir}/sshsvc ${BuildOMCBinDir}
cp -rf ${CapTraceDir}/captrace ${BuildOMCBinDir}
cp -rf ${Data2htmlDir}/data2html ${BuildOMCBinDir}
cp -rf ${MiscDir}/* ${BuildOMCBinDir}
cp -rf ${ConfigEtcDir}/* ${BuildOMCEtcDir}
rm -rf ${BuildOMCEtcDir}/db/*
cp -rf ${DBSQLSrcDir}/* ${BuildOMCEtcDir}/db/
cp -rf ${BuildOMCEtcDir}/db/common/* ${BuildOMCEtcDir}/db/install
cp -rf ${BuildOMCEtcDir}/db/common/* ${BuildOMCEtcDir}/db/upgrade
cp -rf ${BuildOMCEtcDir}/db/common/* ${BuildOMCEtcDir}/db/upgvue3
cp -rf ${ConfigSystemdDir}/* ${BuildLibSystemDir}
cp -rf ${EmsFEVue3Dir}/* ${FrontBuildDir}/front >/dev/null
chmod 755 ${BuildOMCBinDir}/*
chmod 755 ${DebBuildDir}/DEBIAN/preinst
chmod 755 ${DebBuildDir}/DEBIAN/postinst
chmod 755 ${DebBuildDir}/DEBIAN/postrm
cp -rf /home/agtuser/probject/nms_cxy/build/build/* ${DebBuildDir}/
#cp -rf /home/agtuser/probject/nms_cxy/build/build/nginx/* ${DebBuildDir}/etc/nginx/conf.d
#cp -rf /home/agtuser/probject/nms_cxy/build/build/systemd/*.service ${DebBuildDir}/lib/systemd/system/
chmod +x ${DebBuildDir}/usr/local/omc/bin/*
sed -i "s/YYYYMMDD/${RelDate}/g" ${DebBuildDir}/DEBIAN/control
perl -0777 -i -pe 's/ne:\n user: root/ne:\n user: agtuser/g' ${DebBuildDir}/usr/local/omc/etc/default/restconf.yaml
dpkg -b ${DebBuildDir} ${ReleaseDebs}/${DebPkgFile}
cd $ReleaseDir/"$1"s/$RelArch
rm -f omc-md5sum.txt
md5sum $DebPkgName >omc-md5sum.txt
;;
*)
echo "mkpkg"
echo "Usage: $0 rpm|deb"
;;
esac

View File

@@ -0,0 +1,72 @@
server {
listen 4443 ssl;
listen [::]:4443 ssl;
server_name 0.0.0.0;
root /usr/local/omc/htdocs/front/;
index index.html index.htm;
server_name localhost;
# SSL
ssl_certificate /usr/local/omc/etc/certs/omc-server.crt;
ssl_certificate_key /usr/local/omc/etc/certs/omc-server.key;
# CA, 自定义
ssl_client_certificate /usr/local/omc/etc/certs/omc-ca.crt;
ssl_verify_client on;
# ssl ciphers
ssl_protocols TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
# location /api/rest/securityManagement {
# proxy_pass http://127.0.0.1:5050;
# }
# location /api/rest/resourceManagement {
# proxy_pass http://127.0.0.1:5050;
# }
# location /api/rest/performanceManagement {
# proxy_pass http://127.0.0.1:5050;
# }
# location /api/rest/faultManagement {
# proxy_pass http://127.0.0.1:5050;
# }
# location /api/rest/aaaa/ {
# proxy_pass http://127.0.0.1:4040;
# }
location /api/rest/ {
proxy_pass http://127.0.0.1:3030;
}
location / {
try_files $uri $uri/ =404;
}
}
server {
listen 8888 default_server;
listen [::]:8888 default_server;
root /usr/local/omc/htdocs/front/;
index index.html index.htm;
server_name localhost;
location /omc-api/ {
proxy_pass http://127.0.0.1:3030/;
proxy_http_version 1.1;
proxy_cache_bypass $http_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
}
location / {
root /usr/local/omc/htdocs/front;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
}

View File

@@ -0,0 +1,16 @@
[Unit]
Description=Cron task daemon
After=network-online.target
[Service]
Type=simple
LimitNOFILE=65535
Restart=always
ExecStart=/usr/local/omc/bin/crontask -c /usr/local/omc/etc/crontask.yaml
RestartSec=2
RestartPreventExitStatus=1
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target

View File

@@ -0,0 +1,16 @@
[Unit]
Description=REST agent daemon
After=network-online.target
[Service]
Type=simple
LimitNOFILE=65535
Restart=always
ExecStart=/usr/local/omc/bin/restagent -c /usr/local/omc/etc/restconf.yaml
RestartSec=2
RestartPreventExitStatus=1
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target

View File

@@ -0,0 +1,16 @@
[Unit]
Description=SSH MML service daemon
After=network-online.target
[Service]
Type=simple
LimitNOFILE=65535
Restart=always
ExecStart=/usr/local/omc/run/sshsvc -c /usr/local/omc/etc/sshsvc.yaml
RestartSec=2
RestartPreventExitStatus=1
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target

View File

@@ -0,0 +1,38 @@
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAABlwAAAAdzc2gtcn
NhAAAAAwEAAQAAAYEAo8xNDB8tD9rEJhtTirwK8CxM0e+wcMT6fuDfTSgc/JRMjXIeM6B7
6Cw2lCSjwTME60nGZ8Yb0STXXuoc+WdEFcWaJVSlfeXzH4G/WCAsw3zxdwaYWnuavzwWFC
TX6wvUgI0Hh1eAgjusZOi1fDvzX8PLml8Lbjd8n6VFneZkVijHNxh1eL8Xq3yqCEGTenrS
4SBGImwIQidtT9LqFs2Ze3Hi5pBvuqq0Um8gtGwp6zd/sIzeG8LX5axBSZN10BrkW1bGC8
7sfpjJvadtvgiz0ZfxVDxd8eP8CgrKq+yQ0scfNB0j4ZOIP9Zwk6Q0fYQHxegPcMNr2v5P
IzHmDwTvDsHu3qyxGc74OVkAEd1o9OXiaSQ/fQXgvdUuSlugBUA3wx8Vlqa0om3fyY/XbX
LdqStmcVtKYfTiePX7UYc09YlYuFJycJxuf6i38Jek58fqp0NSH//ZWP/fXqwkwE8xUzEi
Jiq0c+wp7j5XMPFpMwmKViintJCS5C9nEQ+UIuMpAAAFiMzUaEPM1GhDAAAAB3NzaC1yc2
EAAAGBAKPMTQwfLQ/axCYbU4q8CvAsTNHvsHDE+n7g300oHPyUTI1yHjOge+gsNpQko8Ez
BOtJxmfGG9Ek117qHPlnRBXFmiVUpX3l8x+Bv1ggLMN88XcGmFp7mr88FhQk1+sL1ICNB4
dXgII7rGTotXw781/Dy5pfC243fJ+lRZ3mZFYoxzcYdXi/F6t8qghBk3p60uEgRiJsCEIn
bU/S6hbNmXtx4uaQb7qqtFJvILRsKes3f7CM3hvC1+WsQUmTddAa5FtWxgvO7H6Yyb2nbb
4Is9GX8VQ8XfHj/AoKyqvskNLHHzQdI+GTiD/WcJOkNH2EB8XoD3DDa9r+TyMx5g8E7w7B
7t6ssRnO+DlZABHdaPTl4mkkP30F4L3VLkpboAVAN8MfFZamtKJt38mP121y3akrZnFbSm
H04nj1+1GHNPWJWLhScnCcbn+ot/CXpOfH6qdDUh//2Vj/316sJMBPMVMxIiYqtHPsKe4+
VzDxaTMJilYop7SQkuQvZxEPlCLjKQAAAAMBAAEAAAGATRJTapG8zUn9o4SWIaBrcSkXGG
0000sMJuk+iPqH8R0CjEeXCGnKA6vSHpDC8KRF+0QidC/WZOl14XY9HelGMwxghJI4sG2j
oT6WvyuchHtkzsGurFyeqr7mEKJpanKNkdNKKJe2oxDbBDwvMP6wfG4PflqccUbwf9nvUO
XYbmYPntAGbkNUKt+kze+1Khti4IUkGwxEMoSEvdubRBGH13r17dEmkWnDIUqi0+JVMxVR
IsyVsfBTUAFmUu1ssPgFnD81z9G9OTic2A5zd+QDfXlJWbjJACtuM/4IotkZZ/M6rsVlYn
AY8Vqfs/8C53giSF5R4iiR29FIU3Luts9dJJQyQ94rXunK00iifyh18qisBKwh9rjxYn3J
wFeZeXzKRg/cLuY1Z74QBWjWzukadvu7dC9bWFZ2k3zKBPTodcpXr1QDwFT4mgEYAFXbQN
8RjFGZrhr2jbsnoM71QlcGv9RjxMPNep+BwnYvPSZ1Piu3nmQqNtysg6ur3ZEHJeLVAAAA
wHZ5m4TECDOgkL138faHQycfd9Yi/Yj1akSwVvtGpiPd35ir1bOp52H/Ea3ymDwh6PvOSk
NjpvwqCXSX5nIQWrQQiDHMKA4pCfAtzbJ68fhWmfzWUaWGIcrnhnoxXzMYgXS/Gp6fwqOf
5JH4jm3uM5knXLTz0E0WofYnLgDo6CAuANl9bSQDfPYh8tuNndoQd9190r+15uLhv/pIM7
MsZzifBrE2cgSBIunIERdQbD9JwNCeDPIrV8aQbOJDyuJDbwAAAMEA1nYx8GVZM/0cSZqG
V9C4i6debJEep2k91z7XvjFRZJrTYYZavWJPEUmmqNjsJg0Bdad4g3SdK2iJ4W5CHzDm2S
Zn08j7on/ybcD2c1ZnXbwKrzPXRymc62xxwSDD95m/R5cSvN/Pmy57QfymQNPaNXMkhKq1
nzF56bljW0FHVFnrgUHpbLUOEc0QHXO4d2PaUNptLVxquOJI/VDW2GKKQWaIsdYKPJEDO9
GBe/LaUDzodd1s1isly86DLEgT2HwbAAAAwQDDhgO/kOI1N0jMOpE5gotcrhQc353jrP16
mKOdcp9MVHiioRybsyRdnbDIYKXbQz2ZRwmz2RBh55uPQjLcfi82GlIm2rdTL8KzP9vLpc
WAbZ7dcbv1lLyIlr4Yf33LgAChxJQTGNad771cwYFrtwTYk16O0Mdv302L0DgDTJUvhzJb
0ZuIk2nmzumSH1pOYmZl8Oa+UM7YSZNCWEpM7/S5laNISQ6dF/yy6Del2sQk/1/JCMUK0d
GLCkyCiaW9igsAAAASc2ltb25Ac2ltb256aGFuZ3N6AQ==
-----END OPENSSH PRIVATE KEY-----

View File

@@ -0,0 +1 @@
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCjzE0MHy0P2sQmG1OKvArwLEzR77BwxPp+4N9NKBz8lEyNch4zoHvoLDaUJKPBMwTrScZnxhvRJNde6hz5Z0QVxZolVKV95fMfgb9YICzDfPF3Bphae5q/PBYUJNfrC9SAjQeHV4CCO6xk6LV8O/Nfw8uaXwtuN3yfpUWd5mRWKMc3GHV4vxerfKoIQZN6etLhIEYibAhCJ21P0uoWzZl7ceLmkG+6qrRSbyC0bCnrN3+wjN4bwtflrEFJk3XQGuRbVsYLzux+mMm9p22+CLPRl/FUPF3x4/wKCsqr7JDSxx80HSPhk4g/1nCTpDR9hAfF6A9ww2va/k8jMeYPBO8Owe7erLEZzvg5WQAR3Wj05eJpJD99BeC91S5KW6AFQDfDHxWWprSibd/Jj9dtct2pK2ZxW0ph9OJ49ftRhzT1iVi4UnJwnG5/qLfwl6Tnx+qnQ1If/9lY/99erCTATzFTMSImKrRz7CnuPlcw8WkzCYpWKKe0kJLkL2cRD5Qi4yk= simon@simonzhangsz

View File

@@ -0,0 +1,38 @@
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAABlwAAAAdzc2gtcn
NhAAAAAwEAAQAAAYEAo8xNDB8tD9rEJhtTirwK8CxM0e+wcMT6fuDfTSgc/JRMjXIeM6B7
6Cw2lCSjwTME60nGZ8Yb0STXXuoc+WdEFcWaJVSlfeXzH4G/WCAsw3zxdwaYWnuavzwWFC
TX6wvUgI0Hh1eAgjusZOi1fDvzX8PLml8Lbjd8n6VFneZkVijHNxh1eL8Xq3yqCEGTenrS
4SBGImwIQidtT9LqFs2Ze3Hi5pBvuqq0Um8gtGwp6zd/sIzeG8LX5axBSZN10BrkW1bGC8
7sfpjJvadtvgiz0ZfxVDxd8eP8CgrKq+yQ0scfNB0j4ZOIP9Zwk6Q0fYQHxegPcMNr2v5P
IzHmDwTvDsHu3qyxGc74OVkAEd1o9OXiaSQ/fQXgvdUuSlugBUA3wx8Vlqa0om3fyY/XbX
LdqStmcVtKYfTiePX7UYc09YlYuFJycJxuf6i38Jek58fqp0NSH//ZWP/fXqwkwE8xUzEi
Jiq0c+wp7j5XMPFpMwmKViintJCS5C9nEQ+UIuMpAAAFiMzUaEPM1GhDAAAAB3NzaC1yc2
EAAAGBAKPMTQwfLQ/axCYbU4q8CvAsTNHvsHDE+n7g300oHPyUTI1yHjOge+gsNpQko8Ez
BOtJxmfGG9Ek117qHPlnRBXFmiVUpX3l8x+Bv1ggLMN88XcGmFp7mr88FhQk1+sL1ICNB4
dXgII7rGTotXw781/Dy5pfC243fJ+lRZ3mZFYoxzcYdXi/F6t8qghBk3p60uEgRiJsCEIn
bU/S6hbNmXtx4uaQb7qqtFJvILRsKes3f7CM3hvC1+WsQUmTddAa5FtWxgvO7H6Yyb2nbb
4Is9GX8VQ8XfHj/AoKyqvskNLHHzQdI+GTiD/WcJOkNH2EB8XoD3DDa9r+TyMx5g8E7w7B
7t6ssRnO+DlZABHdaPTl4mkkP30F4L3VLkpboAVAN8MfFZamtKJt38mP121y3akrZnFbSm
H04nj1+1GHNPWJWLhScnCcbn+ot/CXpOfH6qdDUh//2Vj/316sJMBPMVMxIiYqtHPsKe4+
VzDxaTMJilYop7SQkuQvZxEPlCLjKQAAAAMBAAEAAAGATRJTapG8zUn9o4SWIaBrcSkXGG
0000sMJuk+iPqH8R0CjEeXCGnKA6vSHpDC8KRF+0QidC/WZOl14XY9HelGMwxghJI4sG2j
oT6WvyuchHtkzsGurFyeqr7mEKJpanKNkdNKKJe2oxDbBDwvMP6wfG4PflqccUbwf9nvUO
XYbmYPntAGbkNUKt+kze+1Khti4IUkGwxEMoSEvdubRBGH13r17dEmkWnDIUqi0+JVMxVR
IsyVsfBTUAFmUu1ssPgFnD81z9G9OTic2A5zd+QDfXlJWbjJACtuM/4IotkZZ/M6rsVlYn
AY8Vqfs/8C53giSF5R4iiR29FIU3Luts9dJJQyQ94rXunK00iifyh18qisBKwh9rjxYn3J
wFeZeXzKRg/cLuY1Z74QBWjWzukadvu7dC9bWFZ2k3zKBPTodcpXr1QDwFT4mgEYAFXbQN
8RjFGZrhr2jbsnoM71QlcGv9RjxMPNep+BwnYvPSZ1Piu3nmQqNtysg6ur3ZEHJeLVAAAA
wHZ5m4TECDOgkL138faHQycfd9Yi/Yj1akSwVvtGpiPd35ir1bOp52H/Ea3ymDwh6PvOSk
NjpvwqCXSX5nIQWrQQiDHMKA4pCfAtzbJ68fhWmfzWUaWGIcrnhnoxXzMYgXS/Gp6fwqOf
5JH4jm3uM5knXLTz0E0WofYnLgDo6CAuANl9bSQDfPYh8tuNndoQd9190r+15uLhv/pIM7
MsZzifBrE2cgSBIunIERdQbD9JwNCeDPIrV8aQbOJDyuJDbwAAAMEA1nYx8GVZM/0cSZqG
V9C4i6debJEep2k91z7XvjFRZJrTYYZavWJPEUmmqNjsJg0Bdad4g3SdK2iJ4W5CHzDm2S
Zn08j7on/ybcD2c1ZnXbwKrzPXRymc62xxwSDD95m/R5cSvN/Pmy57QfymQNPaNXMkhKq1
nzF56bljW0FHVFnrgUHpbLUOEc0QHXO4d2PaUNptLVxquOJI/VDW2GKKQWaIsdYKPJEDO9
GBe/LaUDzodd1s1isly86DLEgT2HwbAAAAwQDDhgO/kOI1N0jMOpE5gotcrhQc353jrP16
mKOdcp9MVHiioRybsyRdnbDIYKXbQz2ZRwmz2RBh55uPQjLcfi82GlIm2rdTL8KzP9vLpc
WAbZ7dcbv1lLyIlr4Yf33LgAChxJQTGNad771cwYFrtwTYk16O0Mdv302L0DgDTJUvhzJb
0ZuIk2nmzumSH1pOYmZl8Oa+UM7YSZNCWEpM7/S5laNISQ6dF/yy6Del2sQk/1/JCMUK0d
GLCkyCiaW9igsAAAASc2ltb25Ac2ltb256aGFuZ3N6AQ==
-----END OPENSSH PRIVATE KEY-----

View File

View File

@@ -0,0 +1,49 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
AmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
AmfGuamiList: ""
SnssaiList: ""
MaxUser: ""
RelativeCapacity: ""
MaxGnbNum: ""
EpRpDynN8Amf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN11Amf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN12Amf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,48 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
SmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
MaxPduSessions: ""
MaxQfi: ""
UpfList: ""
AddrPool:
Id: ""
UserLabel: ""
AddrType: "Static"
IpVersion: ""
AddrSegList: ""
EpRpDynN7Smf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN10Smf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,39 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
UdmFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
UdrFunction:
Id: ""
UserLabel: ""
AddrType: "Static"
IpVersion: ""
AddrSegList: ""
AusfFunction:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,141 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
InventoryUnitRack:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
MaxPduSessions: ""
MaxQfi: ""
UpfList: ""
InventoryUnitShelf:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
RackPosition: ""
InventoryUnitPack:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
PortsInformation: ""
PackPosition: ""
SlotsOccupied: ""
InventoryUnitHost:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
HostPosition: ""
NumberOfCpu: ""
MemSize: ""
HardDiskSize: ""
InventoryUnitAccessory:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
AccessoryPosition: ""
AccessoryType: ""
AddtionalInformation: ""
UpfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
MaxQosFlows: ""
MaxThroughput: ""
EpRpDynN9Upf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN3Upf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
AmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
UdrFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
AusfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,44 @@
# file: log file name
# level: /trace/debug/info/warn/error/fatal, default: debug
# duration: saved days, default is 30 days
logger:
file: /usr/local/omc/log/crontask.log
level: trace
duration: 24
count: 90
omc:
name: RJ_OMC_S001
hosturi: http://127.0.0.1:3030
hostno: S001
province: BJ
netabbr: HX
vendor: RJ
tasks:
file: /usr/local/omc/etc/tasks.yaml
database:
type: mysql
user: root
password: 1000omc@kp!
host: 127.0.0.1
port: 33066
name: omc_db
backup: /usr/local/omc/database
# northbound interface, cm/pm
# duration(day): saved days
# zipPeriods(day): periods of zip pm data file
northbound:
cm:
cfgfiledir: /usr/local/omc/etc/cm
xmlfiledir: /opt/omc/ftp/cm
version: V1.0.1
duration: 30
pm:
cfgfiledir: /usr/local/omc/etc/pm
xmlfiledir: /opt/omc/ftp/pm
version: V1.0.1
duration: 30
zipPeriods: 1

View File

@@ -0,0 +1,111 @@
# file: log file name
# level: /trace/debug/info/warn/error/fatal, default: debug
# duration: rotation time with xx hours, example: 1/12/24 hours
# count: rotation count of log, default is 30 rotation
logger:
file: /usr/local/omc/log/restagent.log
level: debug
duration: 24
count: 90
# rest agent listen ipv4/v6 and port, support multiple routines
# ip: 0.0.0.0 or ::0, support IPv4/v6
rest:
- ipv4: 0.0.0.0
ipv6:
port: 3030
- ipv4:
ipv6: ::0
port: 6060
database:
type: mysql
user: root
password: 1000omc@kp!
host: 127.0.0.1
port: 33066
name: omc_db
backup: /usr/loal/omc/database
mml:
port: 4100
sleep: 200
user: admin
password: admin
ne:
user: root
etcdir: /usr/local/etc
bindir: /usr/local/bin
omcdir: /usr/local/omc
licensedir: /usr/local/etc/{neType}/license
# chk2ne: true/false, if put OmcNeConfig parameters to NE
omc:
uriPrefix: /api/rest/oam
neType: OMC
neId: 001
rmUID: 1100RJHX1OMC001
neName: OMC
province: BJ
vendor: RJ
dn: 4600
chk2ne: false
sn: 13750650
checksign: false
backup: /usr/local/omc/backup
upload: /usr/local/omc/upload
frontUpload: /usr/local/omc/htdocs/front/upload
software: /usr/local/omc/software
license: /usr/local/omc/license
gtpUri: gtp:192.168.2.119:2152
checkContentType: false
testMode: true
rbacMode: true
# Alarm module setting
# Forward interface:
# email/sms
alarm:
forwardAlarm: true
email:
smtp: smtp@ruijie.com.cn
port: 25
user: smtpuser
password: smtpuser@omc
sms:
apiURL: http://smsc.ruijie.com.cn/
accessKeyID: xxxx
accessKeySecret: xxxx
signName: Ruijie SMSC
templateCode: 1000
#User authorized information
# crypt: mysql/md5/bcrypt
# token: true/false to check accessToken
# expires for session, unit: second
# Support single/multiple session of user
auth:
crypt: bcrypt
token: true
expires: 1800
session: multiple
# Parameter for limit number
# rmuid_maxnum: the max number of rmUID, default: 50
# alarmid_maxnum: the max number of AlarmID, default: 50
# pmid_maxnum: the max number of pmID, default: 50
# subid_maxnum: the max number of subscription ID, default: 20
# uri_maxlen: the max length of uri, default: 8192
# rmuid_regexp: regexp pattern of rmUID
params:
rmuidmaxnum: 50
alarmidmaxnum: 50
pmidmaxnum: 50
subidmaxnum: 20
urimaxlen: 2100000
rmuidregexp: "[0-9]{4}[A-Z]{2}[A-Z]{2}[0-9A-Z]{1}[0-9A-Z]{3}[0-9A-Z]{1,16}"
testConfig:
enabled: true
file: /usr/local/omc/etc/testconfig.yaml

View File

@@ -0,0 +1,50 @@
# file: log file name
# level: /trace/debug/info/warn/error/fatal, default: debug
# duration: rotation time with xx hours, example: 1/12/24 hours
# count: rotation count of log, default is 30 rotation
logger:
file: /usr/local/omc/log/sshsvc.log
level: debug
duration: 24
count: 30
# file: MML log file name
# duration: rotation time with xx hours, example: 1/12/24 hours
# count: rotation count of log, default is 30 rotation
# level: cmd/ret log cmd/log cmd & result
logmml:
file: /usr/local/omc/mmllog/omcmml.log
duration: 24
count: 30
level: cmd
# ssh service listen ipv4/v6 and port, support multiple routines
# ip: 0.0.0.0 or ::0, support IPv4/v6
# session: single/multiple session for one user
sshd:
listenAddr: 0.0.0.0
listenPort: 2222
privateKey: /usr/local/omc/.ssh/id_rsa
maxConnNum: 20
timeout: 1800
session: multiple
database:
type: mysql
user: root
password: 1000omc@kp!
host: 127.0.0.1
port: 33066
name: omc_db
omc:
httpUri: http://127.0.0.1:3030
userCrypt: bcrypt
ne:
port: 4100
sleep: 200
user: admin
password: admin

View File

@@ -0,0 +1,171 @@
# example:
# tasks:
# - name: test # task comment
# uri: # restful uri
# params: # params of url
# interval: 30 # do sometion in the interval
# unit: Seconds #Seconds/Minutes/Hours/Days/Weeks, Monday/Tuesday/.../Sunday,
# at: 00:10:00 # do at time such as xx:xx:xx
# do: HelloWorldTask # (Do what: callback function)
#
# Attention: must restart crontask after modified this file
#
tasks:
- name: test # task comment
status: Active #active/inactive
uri: # restful uri
params: # params of http url
body: # body of http request
interval: 60 # do sometion in the interval
unit: Seconds #Seconds/Minutes/Hours/Days/Weeks, Monday/Tuesday/.../Sunday,
at: 00:10:00 # do at time such as xx:xx:xx when unit such as Day/Days/Mondays...
do: TaskHelloWorld # (Do what: callback function)
- name: clear expired history alarm
uri: /api/rest/databaseManagement/v1/omc_db/alarm
params: WHERE=now()+>+ADDDATE(event_time,+interval+(SELECT+`value`+FROM+config+WHERE+config_tag='historyDuration')+day)+and+alarm_status='0'
interval: 1
unit: Days
at: 00:10:00
do: TaskDeleteExpiredRecord
- name: clear deleted custom pm kpi
uri: /api/rest/databaseManagement/v1/omc_db/pm_custom_title
params: WHERE=now()+>+ADDDATE(update_time,+interval+(SELECT+`value`+FROM+config+WHERE+config_tag='keepPMCKpi')+day)+and+status='Deleted'
interval: 1
unit: Days
at: 00:15:00
do: TaskDeleteExpiredRecord
- name: update expired user session
uri: /api/rest/databaseManagement/v1/omc_db/session
params: WHERE=NOW()+>+ADDDATE(shake_time,+interval+expires+second)+and+status='online'
body: '{"session":{"status":"offline"}}'
interval: 30
unit: Seconds
at:
do: TaskUpdateTable
- name: clear expired log
uri:
params:
interval: 1
unit: Days
at: 00:50:00
do: TaskDeleteExpiredRecord
- name: Backup measure data
uri: /api/rest/databaseManagement/v1/omc_db/measure_data
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'id','date','task_id','ne_name','rm_uid','ne_type','granul_option','kpi_code','kpi_id','kpi_ext','start_time','end_time','value','timestamp'+union+select+id,date,task_id,ne_name,rm_uid,ne_type,granul_option,kpi_code,kpi_id,kpi_ext,start_time,end_time,value,timestamp+from+measure_data)+b
interval: 1
unit: Days
at: 00:20:00
do: TaskDBBackupCSVGetBySQL
- name: Backup operation log
uri: /api/rest/databaseManagement/v1/omc_db/operation_log
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'op_id','account_name','op_ip','subsys_tag','op_type','op_content','op_result','begin_time','end_time','vnf_flag','log_time'+union+select+op_id,account_name,op_ip,subsys_tag,op_type,op_content,op_result,begin_time,end_time,vnf_flag,log_time+from+operation_log)+b
interval: 1
unit: Days
at: 00:26:00
do: TaskDBBackupCSVGetBySQL
- name: Backup security log
uri: /api/rest/databaseManagement/v1/omc_db/security_log
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'id','account_name','account_type','op_ip','op_type','op_content','op_result','op_time'+union+select+id,account_name,account_type,op_ip,op_type,op_content,op_result,op_time+from+security_log)+b
interval: 1
unit: Days
at: 00:28:00
do: TaskDBBackupCSVGetBySQL
- name: Backup alarm log
uri: /api/rest/databaseManagement/v1/omc_db/alarm_log
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'id','ne_type','ne_id','alarm_seq','alarm_id','alarm_code','alarm_status','event_time','log_time'+union+select+id,ne_type,ne_id,alarm_seq,alarm_id,alarm_code,alarm_status,event_time,log_time+from+alarm_log)+b
interval: 1
unit: Days
at: 00:30:00
do: TaskDBBackupCSVGetBySQL
- name: handshake to NF
status: Active
uri: /api/rest/systemManagement/v1/elementType/%s/objectType/systemState
params:
interval: 10
unit: Seconds
at:
do: TaskHandShakeToNF
- name: Export CM from NF
uri: /api/rest/systemManagement/v1/elementType/%s/objectType/cm
params: ne_id=%s
interval: 1
unit: Days
at: 00:15
do: TaskExportCmFromNF
- name: Generate NRM xml file
uri:
params:
interval: 1
unit: Day
at: 00:00,06:00,12:00,18:00
do: GenCmXmlFile
- name: Task of Generate measure threshold alarm
status: Active
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
params: RJHXEMSPM10200
interval: 10
unit: Seconds
at:
do: TaskGenMeasureThresholdAlarm
- name: Task of Generate license alarm
status: Inactive
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
params: RJHXEMSCM10100
interval: 1
unit: Days
at: 00:30
do: TaskGenLicenseAlarm
- name: Task of Generate NE system state alarm
status: Active
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
params: RJHXEMSSM10000
interval: 5
unit: Seconds
at:
do: TaskGenNeStateAlarm
- name: Task of Generate Measure Report Timeout
status: Active
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
params: RJHXEMSPM10201
interval: 10
unit: Seconds
at:
do: TaskGenMeasureReportTimeoutAlarm
- name: Monitor proces list and write system log
uri: /api/rest/databaseManagement/v1/omc_db/system_log
params:
body:
interval: 10
unit: Seconds
at:
do: TaskWriteSystemLog
- name: Copy log to /opt/omc/ftp/log
uri:
params: cp -rf /usr/local/omc/database/*.csv /opt/omc/ftp/log
interval: 10
unit: Minutes
at:
do: TaskRunShellCommand
# - name: Import CM to NF
# uri: /api/rest/systemManagement/v1/elementType/udm/objectType/cm
# params: ne_id=SZ_01
# interval: 15
# unit: Seconds
# at:
# do: TaskImportCmToNF
crontab:
# - name: 每隔1分钟执行
# tab: 0 */1 * * * ? // crontab: rule like linux crontab
# do: CronHelloWorldTask // function name to call
# params:
- name: Generate PM xml file
status: Active
tab: 5,20,35,50 * * * *
do: GenPmXmlFile
uri: this is uri
params: Generating PM xml file
# - name: Import CM to NF
# tab: 0 * * * * *
# do: TaskImportCmToNF
# uri: /api/rest/systemManagement/v1/elementType/udm/objectType/cm
# params: ne_id=SZ_01

View File

@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="DataFile">
<xs:complexType>
<xs:sequence>
<xs:element name="FileHeader">
<xs:complexType>
<xs:sequence>
<xs:element name="TimeStamp" type="xs:dateTime"/>
<xs:element name="TimeZone" type="xs:string"/>
<xs:element name="VendorName" type="xs:string" minOccurs="0"/>
<xs:element name="ElementType" type="xs:string" minOccurs="0"/>
<xs:element name="CmVersion" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Objects" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="ObjectType" type="xs:string"/>
<!--该字段必选-->
<xs:element name="FieldName">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="N">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="i" type="xs:integer" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="FieldValue">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="Object">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="V">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="i" type="xs:integer" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="rmUID" type="xs:string" use="required"/>
<xs:attribute name="Dn" type="xs:string"/>
<!-- //无线、核心网专业该字段必选传输、IP专业、业务系统无该字段-->
<xs:attribute name="UserLabel" type="xs:string"/>
<!-- //无线、核心网专业该字段必选传输、IP专业、业务系统无该字段-->
<xs:attribute name="PVFlag" type="xs:string" use="required"/>
<!-- //必须-->
<xs:attribute name="VMID" type="xs:string"/>
<!-- //VNF网络或VNF和PNF混合组网虚拟网元必选物理网元无该字段-->
<xs:attribute name="VNFInstanceID" type="xs:string"/>
<!-- //VNF网络或VNF和PNF混合组网虚拟网元必选物理网元无该字段-->
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="PmFile">
<xs:complexType>
<xs:sequence>
<xs:element name="FileHeader">
<xs:complexType>
<xs:sequence>
<xs:element name="TimeStamp" type="xs:dateTime" />
<xs:element name="TimeZone" type="xs:string" />
<xs:element name="Period" type="xs:integer" />
<xs:element name="VendorName" type="xs:string" />
<xs:element name="ElementType" type="xs:string" />
<xs:element name="PmVersion" type="xs:string" />
<xs:element name="StartTime" type="xs:dateTime" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Measurements" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="ObjectType" type="xs:string" />
<xs:element name="PmName">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="N">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="i" type="xs:integer" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PmData">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="Object">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="V">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="i" type="xs:integer" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="CV">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="SN" type="xs:string" />
<xs:element name="SV" type="xs:string" />
</xs:sequence>
<xs:attribute name="i" type="xs:integer"
use="required" />
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attribute name="rmUID" type="xs:string" use="required" />
<xs:attribute name="Dn" type="xs:string" use="required" />
<xs:attribute name="UserLabel" type="xs:string" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

View File

@@ -0,0 +1,271 @@
SET FOREIGN_KEY_CHECKS = 0;
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
106,
'config.sys.title',
'sys.title',
'config.sys.titleValue',
'Y',
'supervisor',
1698110000000,
NULL,
0,
'config.sys.titleRemark'
);
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
107,
'config.sys.copyright',
'sys.copyright',
'config.sys.copyrightValue',
'Y',
'supervisor',
1698110000000,
NULL,
0,
'config.sys.copyrightRemark'
);
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
108,
'config.sys.i18nOpen',
'sys.i18n.open',
'true',
'Y',
'supervisor',
1698110000000,
NULL,
0,
'config.sys.i18nOpenRemark'
);
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
109,
'Internationalization Default Language',
'sys.i18n.default',
'en_US',
'Y',
'supervisor',
1698110000000,
'supervisor',
1702632906566,
'config.sys.i18nDefaultRemark'
);
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
6,
'config.sys.officialUrl',
'sys.officialUrl',
'https://www.agrandtech.com',
'Y',
'supervisor',
1698110000000,
'admin',
1700809804330,
'config.sys.officialUrlRemark'
);
REPLACE
INTO `omc_db`.`sys_dict_data` (
`dict_code`,
`dict_sort`,
`dict_label`,
`dict_value`,
`dict_type`,
`tag_class`,
`tag_type`,
`status`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
1660,
1660,
'config.sys.titleValue',
'AGrandEMS',
'i18n_zh',
NULL,
NULL,
'1',
'supervisor',
1699350000000,
NULL,
0,
NULL
);
REPLACE
INTO `omc_db`.`sys_dict_data` (
`dict_code`,
`dict_sort`,
`dict_label`,
`dict_value`,
`dict_type`,
`tag_class`,
`tag_type`,
`status`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
3660,
3660,
'config.sys.titleValue',
'AGrandEMS',
'i18n_en',
NULL,
NULL,
'1',
'supervisor',
1699350000000,
NULL,
0,
NULL
);
REPLACE
INTO `omc_db`.`sys_dict_data` (
`dict_code`,
`dict_sort`,
`dict_label`,
`dict_value`,
`dict_type`,
`tag_class`,
`tag_type`,
`status`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
1661,
1661,
'config.sys.copyrightValue',
'Copyright ©2023 千通科技',
'i18n_zh',
NULL,
NULL,
'1',
'supervisor',
1699350000000,
NULL,
0,
NULL
);
REPLACE
INTO `omc_db`.`sys_dict_data` (
`dict_code`,
`dict_sort`,
`dict_label`,
`dict_value`,
`dict_type`,
`tag_class`,
`tag_type`,
`status`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
3661,
3661,
'config.sys.copyrightValue',
'Copyright ©2023 AGrandTech',
'i18n_en',
NULL,
NULL,
'1',
'supervisor',
1699350000000,
NULL,
0,
NULL
);
-- set internationalization switching to ON
-- REPLACE
-- INTO `omc_db`.`sys_role_menu` (`role_id`, `menu_id`)
-- VALUES (2, 2122);
UPDATE `omc_db`.`sys_menu`
SET
`status` = '1'
WHERE
`menu_id` = 2122;
SET FOREIGN_KEY_CHECKS = 1;

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@@ -0,0 +1,269 @@
SET FOREIGN_KEY_CHECKS = 0;
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
106,
'config.sys.title',
'sys.title',
'config.sys.titleValue',
'Y',
'supervisor',
1698110000000,
NULL,
0,
'config.sys.titleRemark'
);
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
107,
'config.sys.copyright',
'sys.copyright',
'config.sys.copyrightValue',
'Y',
'supervisor',
1698110000000,
NULL,
0,
'config.sys.copyrightRemark'
);
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
108,
'config.sys.i18nOpen',
'sys.i18n.open',
'false',
'Y',
'supervisor',
1698110000000,
NULL,
0,
'config.sys.i18nOpenRemark'
);
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
109,
'Internationalization Default Language',
'sys.i18n.default',
'en_US',
'Y',
'supervisor',
1698110000000,
'supervisor',
1702632906566,
'config.sys.i18nDefaultRemark'
);
REPLACE
INTO `omc_db`.`sys_config` (
`config_id`,
`config_name`,
`config_key`,
`config_value`,
`config_type`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
6,
'config.sys.officialUrl',
'sys.officialUrl',
'https://www.bluearcus.com',
'Y',
'supervisor',
1698110000000,
'admin',
1700809804330,
'config.sys.officialUrlRemark'
);
REPLACE
INTO `omc_db`.`sys_dict_data` (
`dict_code`,
`dict_sort`,
`dict_label`,
`dict_value`,
`dict_type`,
`tag_class`,
`tag_type`,
`status`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
1660,
1660,
'config.sys.titleValue',
'BlueArcus EMS',
'i18n_zh',
NULL,
NULL,
'1',
'supervisor',
1699350000000,
NULL,
0,
NULL
);
REPLACE
INTO `omc_db`.`sys_dict_data` (
`dict_code`,
`dict_sort`,
`dict_label`,
`dict_value`,
`dict_type`,
`tag_class`,
`tag_type`,
`status`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
3660,
3660,
'config.sys.titleValue',
'BlueArcus EMS',
'i18n_en',
NULL,
NULL,
'1',
'supervisor',
1699350000000,
NULL,
0,
NULL
);
REPLACE
INTO `omc_db`.`sys_dict_data` (
`dict_code`,
`dict_sort`,
`dict_label`,
`dict_value`,
`dict_type`,
`tag_class`,
`tag_type`,
`status`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
1661,
1661,
'config.sys.copyrightValue',
'Copyright ©2023 BlueArcus',
'i18n_zh',
NULL,
NULL,
'1',
'supervisor',
1699350000000,
NULL,
0,
NULL
);
REPLACE
INTO `omc_db`.`sys_dict_data` (
`dict_code`,
`dict_sort`,
`dict_label`,
`dict_value`,
`dict_type`,
`tag_class`,
`tag_type`,
`status`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
3661,
3661,
'config.sys.copyrightValue',
'Copyright ©2023 BlueArcus',
'i18n_en',
NULL,
NULL,
'1',
'supervisor',
1699350000000,
NULL,
0,
NULL
);
-- set internationalization switching to OFF
-- DELETE FROM `omc_db`.`sys_role_menu` WHERE `menu_id` = 2122;
UPDATE `omc_db`.`sys_menu`
SET
`status` = '0'
WHERE
`menu_id` = 2122;
SET FOREIGN_KEY_CHECKS = 1;

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Binary file not shown.

38
build/config/.ssh/id_rsa Normal file
View File

@@ -0,0 +1,38 @@
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAABlwAAAAdzc2gtcn
NhAAAAAwEAAQAAAYEAo8xNDB8tD9rEJhtTirwK8CxM0e+wcMT6fuDfTSgc/JRMjXIeM6B7
6Cw2lCSjwTME60nGZ8Yb0STXXuoc+WdEFcWaJVSlfeXzH4G/WCAsw3zxdwaYWnuavzwWFC
TX6wvUgI0Hh1eAgjusZOi1fDvzX8PLml8Lbjd8n6VFneZkVijHNxh1eL8Xq3yqCEGTenrS
4SBGImwIQidtT9LqFs2Ze3Hi5pBvuqq0Um8gtGwp6zd/sIzeG8LX5axBSZN10BrkW1bGC8
7sfpjJvadtvgiz0ZfxVDxd8eP8CgrKq+yQ0scfNB0j4ZOIP9Zwk6Q0fYQHxegPcMNr2v5P
IzHmDwTvDsHu3qyxGc74OVkAEd1o9OXiaSQ/fQXgvdUuSlugBUA3wx8Vlqa0om3fyY/XbX
LdqStmcVtKYfTiePX7UYc09YlYuFJycJxuf6i38Jek58fqp0NSH//ZWP/fXqwkwE8xUzEi
Jiq0c+wp7j5XMPFpMwmKViintJCS5C9nEQ+UIuMpAAAFiMzUaEPM1GhDAAAAB3NzaC1yc2
EAAAGBAKPMTQwfLQ/axCYbU4q8CvAsTNHvsHDE+n7g300oHPyUTI1yHjOge+gsNpQko8Ez
BOtJxmfGG9Ek117qHPlnRBXFmiVUpX3l8x+Bv1ggLMN88XcGmFp7mr88FhQk1+sL1ICNB4
dXgII7rGTotXw781/Dy5pfC243fJ+lRZ3mZFYoxzcYdXi/F6t8qghBk3p60uEgRiJsCEIn
bU/S6hbNmXtx4uaQb7qqtFJvILRsKes3f7CM3hvC1+WsQUmTddAa5FtWxgvO7H6Yyb2nbb
4Is9GX8VQ8XfHj/AoKyqvskNLHHzQdI+GTiD/WcJOkNH2EB8XoD3DDa9r+TyMx5g8E7w7B
7t6ssRnO+DlZABHdaPTl4mkkP30F4L3VLkpboAVAN8MfFZamtKJt38mP121y3akrZnFbSm
H04nj1+1GHNPWJWLhScnCcbn+ot/CXpOfH6qdDUh//2Vj/316sJMBPMVMxIiYqtHPsKe4+
VzDxaTMJilYop7SQkuQvZxEPlCLjKQAAAAMBAAEAAAGATRJTapG8zUn9o4SWIaBrcSkXGG
0000sMJuk+iPqH8R0CjEeXCGnKA6vSHpDC8KRF+0QidC/WZOl14XY9HelGMwxghJI4sG2j
oT6WvyuchHtkzsGurFyeqr7mEKJpanKNkdNKKJe2oxDbBDwvMP6wfG4PflqccUbwf9nvUO
XYbmYPntAGbkNUKt+kze+1Khti4IUkGwxEMoSEvdubRBGH13r17dEmkWnDIUqi0+JVMxVR
IsyVsfBTUAFmUu1ssPgFnD81z9G9OTic2A5zd+QDfXlJWbjJACtuM/4IotkZZ/M6rsVlYn
AY8Vqfs/8C53giSF5R4iiR29FIU3Luts9dJJQyQ94rXunK00iifyh18qisBKwh9rjxYn3J
wFeZeXzKRg/cLuY1Z74QBWjWzukadvu7dC9bWFZ2k3zKBPTodcpXr1QDwFT4mgEYAFXbQN
8RjFGZrhr2jbsnoM71QlcGv9RjxMPNep+BwnYvPSZ1Piu3nmQqNtysg6ur3ZEHJeLVAAAA
wHZ5m4TECDOgkL138faHQycfd9Yi/Yj1akSwVvtGpiPd35ir1bOp52H/Ea3ymDwh6PvOSk
NjpvwqCXSX5nIQWrQQiDHMKA4pCfAtzbJ68fhWmfzWUaWGIcrnhnoxXzMYgXS/Gp6fwqOf
5JH4jm3uM5knXLTz0E0WofYnLgDo6CAuANl9bSQDfPYh8tuNndoQd9190r+15uLhv/pIM7
MsZzifBrE2cgSBIunIERdQbD9JwNCeDPIrV8aQbOJDyuJDbwAAAMEA1nYx8GVZM/0cSZqG
V9C4i6debJEep2k91z7XvjFRZJrTYYZavWJPEUmmqNjsJg0Bdad4g3SdK2iJ4W5CHzDm2S
Zn08j7on/ybcD2c1ZnXbwKrzPXRymc62xxwSDD95m/R5cSvN/Pmy57QfymQNPaNXMkhKq1
nzF56bljW0FHVFnrgUHpbLUOEc0QHXO4d2PaUNptLVxquOJI/VDW2GKKQWaIsdYKPJEDO9
GBe/LaUDzodd1s1isly86DLEgT2HwbAAAAwQDDhgO/kOI1N0jMOpE5gotcrhQc353jrP16
mKOdcp9MVHiioRybsyRdnbDIYKXbQz2ZRwmz2RBh55uPQjLcfi82GlIm2rdTL8KzP9vLpc
WAbZ7dcbv1lLyIlr4Yf33LgAChxJQTGNad771cwYFrtwTYk16O0Mdv302L0DgDTJUvhzJb
0ZuIk2nmzumSH1pOYmZl8Oa+UM7YSZNCWEpM7/S5laNISQ6dF/yy6Del2sQk/1/JCMUK0d
GLCkyCiaW9igsAAAASc2ltb25Ac2ltb256aGFuZ3N6AQ==
-----END OPENSSH PRIVATE KEY-----

View File

@@ -0,0 +1 @@
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCjzE0MHy0P2sQmG1OKvArwLEzR77BwxPp+4N9NKBz8lEyNch4zoHvoLDaUJKPBMwTrScZnxhvRJNde6hz5Z0QVxZolVKV95fMfgb9YICzDfPF3Bphae5q/PBYUJNfrC9SAjQeHV4CCO6xk6LV8O/Nfw8uaXwtuN3yfpUWd5mRWKMc3GHV4vxerfKoIQZN6etLhIEYibAhCJ21P0uoWzZl7ceLmkG+6qrRSbyC0bCnrN3+wjN4bwtflrEFJk3XQGuRbVsYLzux+mMm9p22+CLPRl/FUPF3x4/wKCsqr7JDSxx80HSPhk4g/1nCTpDR9hAfF6A9ww2va/k8jMeYPBO8Owe7erLEZzvg5WQAR3Wj05eJpJD99BeC91S5KW6AFQDfDHxWWprSibd/Jj9dtct2pK2ZxW0ph9OJ49ftRhzT1iVi4UnJwnG5/qLfwl6Tnx+qnQ1If/9lY/99erCTATzFTMSImKrRz7CnuPlcw8WkzCYpWKKe0kJLkL2cRD5Qi4yk= simon@simonzhangsz

View File

@@ -0,0 +1,38 @@
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAABlwAAAAdzc2gtcn
NhAAAAAwEAAQAAAYEAo8xNDB8tD9rEJhtTirwK8CxM0e+wcMT6fuDfTSgc/JRMjXIeM6B7
6Cw2lCSjwTME60nGZ8Yb0STXXuoc+WdEFcWaJVSlfeXzH4G/WCAsw3zxdwaYWnuavzwWFC
TX6wvUgI0Hh1eAgjusZOi1fDvzX8PLml8Lbjd8n6VFneZkVijHNxh1eL8Xq3yqCEGTenrS
4SBGImwIQidtT9LqFs2Ze3Hi5pBvuqq0Um8gtGwp6zd/sIzeG8LX5axBSZN10BrkW1bGC8
7sfpjJvadtvgiz0ZfxVDxd8eP8CgrKq+yQ0scfNB0j4ZOIP9Zwk6Q0fYQHxegPcMNr2v5P
IzHmDwTvDsHu3qyxGc74OVkAEd1o9OXiaSQ/fQXgvdUuSlugBUA3wx8Vlqa0om3fyY/XbX
LdqStmcVtKYfTiePX7UYc09YlYuFJycJxuf6i38Jek58fqp0NSH//ZWP/fXqwkwE8xUzEi
Jiq0c+wp7j5XMPFpMwmKViintJCS5C9nEQ+UIuMpAAAFiMzUaEPM1GhDAAAAB3NzaC1yc2
EAAAGBAKPMTQwfLQ/axCYbU4q8CvAsTNHvsHDE+n7g300oHPyUTI1yHjOge+gsNpQko8Ez
BOtJxmfGG9Ek117qHPlnRBXFmiVUpX3l8x+Bv1ggLMN88XcGmFp7mr88FhQk1+sL1ICNB4
dXgII7rGTotXw781/Dy5pfC243fJ+lRZ3mZFYoxzcYdXi/F6t8qghBk3p60uEgRiJsCEIn
bU/S6hbNmXtx4uaQb7qqtFJvILRsKes3f7CM3hvC1+WsQUmTddAa5FtWxgvO7H6Yyb2nbb
4Is9GX8VQ8XfHj/AoKyqvskNLHHzQdI+GTiD/WcJOkNH2EB8XoD3DDa9r+TyMx5g8E7w7B
7t6ssRnO+DlZABHdaPTl4mkkP30F4L3VLkpboAVAN8MfFZamtKJt38mP121y3akrZnFbSm
H04nj1+1GHNPWJWLhScnCcbn+ot/CXpOfH6qdDUh//2Vj/316sJMBPMVMxIiYqtHPsKe4+
VzDxaTMJilYop7SQkuQvZxEPlCLjKQAAAAMBAAEAAAGATRJTapG8zUn9o4SWIaBrcSkXGG
0000sMJuk+iPqH8R0CjEeXCGnKA6vSHpDC8KRF+0QidC/WZOl14XY9HelGMwxghJI4sG2j
oT6WvyuchHtkzsGurFyeqr7mEKJpanKNkdNKKJe2oxDbBDwvMP6wfG4PflqccUbwf9nvUO
XYbmYPntAGbkNUKt+kze+1Khti4IUkGwxEMoSEvdubRBGH13r17dEmkWnDIUqi0+JVMxVR
IsyVsfBTUAFmUu1ssPgFnD81z9G9OTic2A5zd+QDfXlJWbjJACtuM/4IotkZZ/M6rsVlYn
AY8Vqfs/8C53giSF5R4iiR29FIU3Luts9dJJQyQ94rXunK00iifyh18qisBKwh9rjxYn3J
wFeZeXzKRg/cLuY1Z74QBWjWzukadvu7dC9bWFZ2k3zKBPTodcpXr1QDwFT4mgEYAFXbQN
8RjFGZrhr2jbsnoM71QlcGv9RjxMPNep+BwnYvPSZ1Piu3nmQqNtysg6ur3ZEHJeLVAAAA
wHZ5m4TECDOgkL138faHQycfd9Yi/Yj1akSwVvtGpiPd35ir1bOp52H/Ea3ymDwh6PvOSk
NjpvwqCXSX5nIQWrQQiDHMKA4pCfAtzbJ68fhWmfzWUaWGIcrnhnoxXzMYgXS/Gp6fwqOf
5JH4jm3uM5knXLTz0E0WofYnLgDo6CAuANl9bSQDfPYh8tuNndoQd9190r+15uLhv/pIM7
MsZzifBrE2cgSBIunIERdQbD9JwNCeDPIrV8aQbOJDyuJDbwAAAMEA1nYx8GVZM/0cSZqG
V9C4i6debJEep2k91z7XvjFRZJrTYYZavWJPEUmmqNjsJg0Bdad4g3SdK2iJ4W5CHzDm2S
Zn08j7on/ybcD2c1ZnXbwKrzPXRymc62xxwSDD95m/R5cSvN/Pmy57QfymQNPaNXMkhKq1
nzF56bljW0FHVFnrgUHpbLUOEc0QHXO4d2PaUNptLVxquOJI/VDW2GKKQWaIsdYKPJEDO9
GBe/LaUDzodd1s1isly86DLEgT2HwbAAAAwQDDhgO/kOI1N0jMOpE5gotcrhQc353jrP16
mKOdcp9MVHiioRybsyRdnbDIYKXbQz2ZRwmz2RBh55uPQjLcfi82GlIm2rdTL8KzP9vLpc
WAbZ7dcbv1lLyIlr4Yf33LgAChxJQTGNad771cwYFrtwTYk16O0Mdv302L0DgDTJUvhzJb
0ZuIk2nmzumSH1pOYmZl8Oa+UM7YSZNCWEpM7/S5laNISQ6dF/yy6Del2sQk/1/JCMUK0d
GLCkyCiaW9igsAAAASc2ltb25Ac2ltb256aGFuZ3N6AQ==
-----END OPENSSH PRIVATE KEY-----

View File

@@ -0,0 +1,651 @@
omc:
systemManagement:
display: "System Management"
mml:
- operation: "dsp"
object: "sysInfo"
display: "Display NE System Information"
params:
- name: "neType"
alias: ""
type: "string"
optional: "false"
apostr: "false"
filter: ""
display: "NE Type"
comment: ""
- name: "neId"
alias: ""
type: "string"
optional: "false"
filter: ""
display: "NE ID"
comment: ""
- operation: "dsp"
object: "licenseInfo"
display: "Display NE License Information"
params:
- name: "neType"
alias: ""
type: "string"
optional: "false"
apostr: "false"
filter: ""
display: "NE Type"
comment: ""
- name: "neId"
alias: ""
type: "string"
optional: "false"
filter: ""
display: "NE ID"
comment: ""
neManagement:
display: "Network Element Management"
mml:
- operation: "lst"
object: "neInfo"
display: "List NE Information"
params:
- name: "neType"
alias: "ne_type"
type: "string"
optional: "true"
apostr: "true"
filter: ""
display: "NE Type"
comment: ""
- name: "neId"
alias: "ne_id"
type: "string"
optional: "true"
apostr: "true"
filter: ""
display: "NE ID"
comment: ""
- name: "rmUID"
alias: "rm_uid"
type: "string"
optional: "true"
apostr: "true"
filter: ""
display: "Resource Management UID"
comment: ""
- operation: "lst"
object: "meMap"
display: "List Managed Element Map"
params:
- name: "rmUID"
alias: "rm_uid"
type: "string"
optional: "true"
apostr: "true"
filter: ""
display: "Resource Management UID"
comment: ""
- operation: "add"
object: "neInfo"
display: "Add Network Element"
params:
- name: "neType"
alias: "ne_type"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "NE Type"
comment: ""
- name: "neId"
alias: "ne_id"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "NE ID"
comment: ""
- name: "rmUID"
alias: "rm_uid"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "Resource Management UID"
comment: ""
- name: "ip"
alias: "ip"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "IP Address"
comment: ""
- name: "port"
alias: "port"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "Port"
comment: ""
- name: "neName"
alias: "ne_name"
type: "string"
optional: "true"
apostr: "false"
loc: "false"
filter: ""
display: "NE name"
comment: ""
- name: "pvFlag"
alias: "pv_flag"
type: "string"
optional: "true"
apostr: "false"
loc: "false"
filter: ""
display: "Phisical/Virtual flag"
comment: ""
- operation: "mod"
object: "neInfo"
display: "Modify Network Element"
params:
- name: "neType"
alias: "ne_type"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "NE Type"
comment: ""
- name: "neId"
alias: "ne_id"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "NE ID"
comment: ""
- name: "rmUID"
alias: "rm_uid"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "Resource Management UID"
comment: ""
- name: "ip"
alias: "ip"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "IP Address"
comment: ""
- name: "port"
alias: "port"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "Port"
comment: ""
- name: "neName"
alias: "ne_name"
type: "string"
optional: "true"
apostr: "false"
loc: "false"
filter: ""
display: "NE name"
comment: ""
- name: "pvFlag"
alias: "pv_flag"
type: "string"
optional: "true"
apostr: "false"
loc: "false"
filter: ""
display: "Phisical/Virtual flag"
comment: ""
- operation: "del"
object: "neInfo"
display: "Delete Network Element"
params:
- name: "neType"
alias: "ne_type"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "NE Type"
comment: ""
- name: "neId"
alias: "ne_id"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "NE ID"
comment: ""
- name: "neId"
alias: "ne_id"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "NE ID"
comment: ""
faultManagement:
display: "Fault Management"
mml:
- operation: "dsp"
object: "alarms"
display: "Display Alarms Information"
params:
- name: "neType"
alias: "ne_type"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "NE Type"
comment: ""
- name: "neId"
alias: "ne_id"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "NE UID"
comment: ""
- name: "neName"
alias: "ne_name"
type: "int"
optional: "false"
apostr: "true"
filter: ""
display: "NE name"
comment: ""
- name: "alarmCode"
type: "int"
optional: "false"
apostr: "true"
filter: ""
display: "Alarm Code"
comment: ""
- name: "origSeverity"
type: "enum"
optional: "false"
apostr: "true"
filter: '{"Critical","Major","Minor","Warning","Event"}'
display: "Original Severity"
comment: ""
- name: "pvFlag"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "PV Flag"
comment: ""
- name: "startTime"
alias: "event_time>="
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Alarm Event Start Time"
comment: ""
- name: "endTime"
alias: "event_time<"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Alarm Event End Time"
comment: ""
- name: "alarmType"
alias: "alarm_type"
type: "enum"
optional: "false"
apostr: "true"
filter: '{"CommunicationAlarm","EquipmentAlarm","ProcessingFailure","EnvironmentalAlarm","QualityOfServiceAlarm"}'
display: "Alarm Type"
comment: ""
- name: "alarmStatus"
alias: "alarm_status"
type: "int"
optional: "false"
apostr: "true"
filter: ""
display: "Alarm Status"
comment: ""
pmTaskManagement:
display: "Performance Measure Task Management"
mml:
- operation: "lst"
object: "measureTask"
display: "List Performance Measure Task"
params:
- name: "neType"
alias: "ne_type"
type: "string"
optional: "true"
apostr: "true"
filter: ""
display: "NE Type"
comment: ""
- name: "granulOption"
alias: "granul_option"
type: "string"
optional: "true"
apostr: "true"
filter: ""
display: "Time Granularity"
comment: ""
- operation: "add"
object: "measureTask"
display: "Add Performance Measure Task"
params:
- name: "neType"
alias: "ne_type"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "NE Type"
comment: ""
- name: "neIds"
alias: "ne_ids"
type: "array"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "NE ID Set"
comment: ""
- name: "kpiSet"
alias: "kpi_set"
type: "json"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "KPI Set"
comment: ""
- name: "startTime"
alias: "start_time"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "Measure Task Start Time"
comment: ""
- name: "endTime"
alias: "end_time"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "Measure Task End Time"
comment: ""
- operation: "mod"
object: "measureTask"
display: "Modify Performance Measure Task"
params:
- name: "Id"
alias: "id"
type: "string"
optional: "false"
apostr: "false"
loc: "true"
filter: ""
display: "NE Type"
comment: ""
- name: "kpiSet"
alias: "kpi_set"
type: "json"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "KPI Set"
comment: ""
- name: "startTime"
alias: "start_time"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "Measure Task Start Time"
comment: ""
- name: "endTime"
alias: "end_time"
type: "string"
optional: "false"
apostr: "false"
loc: "false"
filter: ""
display: "Measure Task End Time"
comment: ""
- name: "granulOption"
alias: "granul_option"
type: "string"
optional: "true"
apostr: "true"
loc: "false"
filter: ""
display: "Time Granularity"
comment: ""
pmDataManagement:
display: "Performance Data Management"
mml:
- operation: "lst"
object: "measureData"
display: "List Performance Data"
params:
- name: "ID"
alias: "id"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "Task ID"
comment: ""
- name: "neType"
alias: "ne_type"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "NE Type"
comment: ""
- name: "startTime"
alias: "start_time>="
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Measure Period Start Time More Than"
comment: ""
- name: "endTime"
alias: "start_time<"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Measure Period Start Time Less Than"
comment: ""
logManagement:
display: "Log Management"
mml:
- operation: "lst"
object: "systemLog"
display: "List System Log"
params:
- name: "processType"
alias: "process_type"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "Process Type"
comment: ""
- name: "startTime"
alias: "log_time>="
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time More Than"
comment: ""
- name: "endTime"
alias: "log_time<"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time Less Than"
comment: ""
- operation: "lst"
object: "operationLog"
display: "List Operation Log"
params:
- name: "accountID"
alias: "account_name"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "Account ID"
comment: ""
- name: "startTime"
alias: "log_time>="
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time More Than"
comment: ""
- name: "endTime"
alias: "log_time<"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time Less Than"
comment: ""
- operation: "lst"
object: "securityLog"
display: "List Security Log"
params:
- name: "accountID"
alias: "account_name"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "Account ID"
comment: ""
- name: "startTime"
alias: "op_time>="
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time More Than"
comment: ""
- name: "endTime"
alias: "op_time<"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time Less Than"
comment: ""
- operation: "lst"
object: "alarmLog"
display: "List Alarm Log"
params:
- name: "neType"
alias: "ne_type"
type: "string"
optional: "true"
apostr: "true"
filter: ""
display: "NE Type"
comment: ""
- name: "startTime"
alias: "op_time>="
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time More Than"
comment: ""
- name: "endTime"
alias: "op_time<"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time Less Than"
comment: ""
- operation: "lst"
object: "eventlog"
display: "List NE Event Log"
params:
- name: "neType"
alias: "ne_type"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "NE Type"
comment: ""
- name: "neId"
alias: "ne_id"
type: "string"
optional: "false"
apostr: "true"
loc: "true"
filter: ""
display: "NE ID"
comment: ""
- name: "startTime"
alias: "log_time>="
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time More Than"
comment: ""
- name: "endTime"
alias: "log_time<"
type: "string"
optional: "false"
apostr: "true"
filter: ""
display: "Log Time Less Than"
comment: ""

View File

@@ -0,0 +1,644 @@
{
"udm": {
"system": {
"display": "System",
"list": [
{
"name": "serviceIP",
"type": "ipv4",
"value": "172.16.5.140",
"access": "read-write",
"filter": "",
"display": "Service IP",
"comment": ""
},
{
"name": "servicePort",
"type": "int",
"value": "8080",
"access": "read-write",
"filter": "0~65535",
"display": "Service Port",
"comment": "0~65535"
},
{
"name": "nrfUri",
"type": "string",
"value": "http://172.16.5.180:8080",
"access": "read-write",
"filter": "",
"display": "NRF URI",
"comment": ""
},
{
"name": "ausfIP",
"type": "ipv4",
"value": "172.16.5.130",
"access": "read-write",
"filter": "",
"display": "AUSF IP",
"comment": ""
},
{
"name": "fqdn",
"type": "string",
"value": "agt.com",
"access": "read-write",
"filter": "",
"display": "fqdn",
"comment": ""
},
{
"name": "priority",
"type": "int",
"value": "1",
"access": "read-write",
"filter": "0~4095",
"display": "Priority",
"comment": "0~4095"
},
{
"name": "capacity",
"type": "int",
"value": "4096",
"access": "read-write",
"filter": "0~65535",
"display": "Capacity",
"comment": "0~65535"
},
{
"name": "groupId",
"type": "string",
"value": "0",
"access": "read-write",
"filter": "",
"display": "Group Id",
"comment": "0~31"
},
{
"name": "supiRanges",
"type": "regex",
"value": "imsi-001010100080000~imsi-001010100080099",
"access": "read-write",
"filter": "^imsi-\\d{15}~imsi-\\d{15}$",
"display": "SUPI Ranges",
"comment": ""
},
{
"name": "gpsiRanges",
"type": "regex",
"value": "msisdn-69072000~msisdn-69072099",
"access": "read-write",
"filter": "^msisdn-\\d{2,15}~msisdn-\\d{2,15}$",
"display": "GPSI Ranges",
"comment": ""
},
{
"name": "scheme",
"type": "enum",
"value": "http",
"access": "read-write",
"filter": "{\"0\":\"http\", \"1\":\"https\"}",
"display": "scheme",
"comment": ""
},
{
"name": "op0",
"type": "regex",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op0",
"comment": ""
},
{
"name": "op1",
"type": "regex",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op1",
"comment": ""
},
{
"name": "op2",
"type": "regex",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op2",
"comment": ""
},
{
"name": "op3",
"type": "regex",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op3",
"comment": ""
},
{
"name": "rlist0",
"type": "regex",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist0",
"comment": ""
},
{
"name": "rlist1",
"type": "regex",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist1",
"comment": ""
},
{
"name": "rlist2",
"type": "regex",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist2",
"comment": ""
},
{
"name": "rlist3",
"type": "regex",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist3",
"comment": ""
}
]
},
"subsUEAmbr": {
"display": "Subs UE AMBR",
"array": [
{
"name": "index",
"type": "int",
"value": "1",
"access": "read-only",
"filter": "^\\d{1,2}$",
"display": "Index",
"comment": "1~16"
},
{
"name": "name",
"type": "string",
"value": "def_ambr",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Name",
"comment": "1~32"
},
{
"name": "uplink",
"type": "string",
"value": "1Gbps",
"access": "read-write",
"filter": "^\\d+(\\.\\d+)?( ?)(bps|Kbps|Mbps|Gbps|Tbps)$",
"display": "Uplink",
"comment": ""
},
{
"name": "downlink",
"type": "string",
"value": "2Gbps",
"access": "read-write",
"filter": "^\\d+(\\.\\d+)?( ?)(bps|Kbps|Mbps|Gbps|Tbps)$",
"display": "Downlink",
"comment": ""
}
]
},
"subsNssais": {
"display": "Subs Nssais",
"array": [
{
"name": "index",
"type": "int",
"value": "1",
"access": "read-only",
"filter": "^\\d{1,2}$",
"display": "Index",
"comment": "1~16"
},
{
"name": "name",
"type": "string",
"value": "def_nssai",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Name",
"comment": "1~32"
},
{
"name": "supportedFeatures",
"type": "string",
"value": "1",
"access": "read-write",
"filter": "8~8",
"display": "Supported Features",
"comment": "8~8"
},
{
"name": "defaultSingleNSSAIs",
"type": "string",
"value": "1-000001",
"access": "read-write",
"filter": "",
"display": "Default Single NSSAIs",
"comment": "0~128"
},
{
"name": "singleNssais",
"type": "string",
"value": "1-000002",
"access": "read-write",
"filter": "",
"display": "Single Nssais",
"comment": "0~128"
}
]
},
"forbiddenAreas": {
"display": "Forbidden Areas",
"array": [
{
"name": "index",
"type": "int",
"value": "1",
"access": "read-only",
"filter": "^\\d{1,2}$",
"display": "Index",
"comment": "1~16"
},
{
"name": "name",
"type": "string",
"value": "def_ambr",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Name",
"comment": "1~32"
},
{
"name": "tacs",
"type": "string",
"value": "123",
"access": "read-write",
"filter": "",
"display": "TACs",
"comment": "0~128"
},
{
"name": "areaCodes",
"type": "string",
"value": "123456",
"access": "read-write",
"filter": "",
"display": "AreaCodes",
"comment": "0~128"
}
]
},
"serviceAreaRestriction": {
"display": "Service Area Restriction",
"array": [
{
"name": "index",
"type": "int",
"value": "1",
"access": "read-only",
"filter": "^\\d{1,2}$",
"display": "Index",
"comment": "1~16"
},
{
"name": "name",
"type": "string",
"value": "def_ambr",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Name",
"comment": "1~32"
},
{
"name": "restrictionType",
"type": "enum",
"value": "0",
"access": "read-write",
"filter": "{\"0\":\"allowedAreas\", \"1\":\"notAllowedAreas\"}",
"display": "Restriction Type",
"comment": "0~128"
},
{
"name": "tacs",
"type": "string",
"value": "123",
"access": "read-write",
"filter": "",
"display": "TACs",
"comment": "0~128"
},
{
"name": "areaCodes",
"type": "string",
"value": "123456",
"access": "read-write",
"filter": "",
"display": "AreaCodes",
"comment": "0~128"
},
{
"name": "maxTAs",
"type": "int",
"value": "1",
"access": "read-write",
"filter": "^\\d{1,2}$",
"display": "Max TAs",
"comment": "0~32"
}
]
},
"smfSelection": {
"display": "Subs Smf Selection",
"array": [
{
"name": "index",
"type": "int",
"value": "1",
"access": "read-only",
"filter": "1~16",
"display": "Index",
"comment": "1~16"
},
{
"name": "name",
"type": "string",
"value": "def_snssai",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Name",
"comment": "0~32"
},
{
"name": "snssai",
"type": "string",
"value": "1-000001",
"access": "read-write",
"filter": "^\\d{1,3}[A-Fa-f0-9]{6}$",
"display": "Snssai",
"comment": ""
},
{
"name": "dnnList",
"type": "int",
"value": "1",
"access": "read-only",
"filter": "1~4",
"display": "Dnn List",
"comment": "",
"array": [
{
"name": "index",
"type": "int",
"value": "1",
"access": "read-only",
"filter": "1~4",
"display": "index",
"comment": "1~4"
},
{
"name": "dnn",
"type": "string",
"value": "cmnet",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Dnn",
"comment": "0~32"
},
{
"name": "defaultDnnInd",
"type": "bool",
"value": "true",
"access": "read-write",
"filter": "false;true;",
"display": "default Dnn Indicator",
"comment": ""
},
{
"name": "lboRoamingAllowed",
"type": "bool",
"value": "false",
"access": "read-write",
"filter": "false;true;",
"display": "LBO Roaming Allowed",
"comment": "LBO Roaming Allowed"
},
{
"name": "iwkEpsInd",
"type": "bool",
"value": "false",
"access": "read-write",
"filter": "false;true;",
"display": "Iwk EPS Ind",
"comment": "Iwk EPS Ind"
},
{
"name": "ladnIndicator",
"type": "bool",
"value": "false",
"access": "read-write",
"filter": "false;true;",
"display": "LADN Indicator",
"comment": "LADN Indicator"
}
]
}
]
},
"dnn": {
"display": "Dnn Conf",
"array": [
{
"name": "index",
"type": "int",
"value": "1",
"access": "read-only",
"filter": "^\\d{1,2}$",
"display": "Index",
"comment": "1~16"
},
{
"name": "name",
"type": "string",
"value": "def_nssai",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Name",
"comment": "1~32"
},
{
"name": "defaultPDUSessionType",
"type": "enum",
"value": "0",
"access": "read-write",
"filter": "{\"0\":\"ipv4\",\"1\":\"ipv6\",\"2\":\"ipv4v6\",\"3\":\"ethernet\",\"4\":\"unstruction\"}",
"display": "Default PDU Session Type",
"comment": ""
},
{
"name": "allowedPDUSessionTypes",
"type": "enum",
"value": "0",
"access": "read-write",
"filter": "{\"0\":\"ipv4\",\"1\":\"ipv6\",\"2\":\"ipv4v6\",\"3\":\"ethernet\",\"4\":\"unstruction\",\"5\":\"ipv4andipv6\",\"6\":\"ipv4andipv4v6\",\"7\":\"ipv6andipv4v6\",\"8\":\"ipv4andipv6andipv4v6\"}",
"display": "Allowed PDU Session Types",
"comment": ""
},
{
"name": "defaultSSCmode",
"type": "enum",
"value": "0",
"access": "read-write",
"filter": "{\"0\":\"sscMode1\",\"1\":\"sscMode2\",\"2\":\"sscMode3\"}",
"display": "Default SSC Mode",
"comment": "1~16"
},
{
"name": "allowedSSCmodes",
"type": "enum",
"value": "0",
"access": "read-write",
"filter": "{\"0\":\"sscMode1\",\"1\":\"sscMode2\",\"2\":\"sscMode3\",\"3\":\"sscMode1sscMode2\",\"4\":\"sscMode1sscMode3\",\"5\":\"sscMode2sscMode3\",\"6\":\"sscMode1sscMode2sscMode3\"}",
"display": "Allowed SSC Modes",
"comment": "1~16"
},
{
"name": "interworkingEPSIndicator",
"type": "bool",
"value": "1",
"access": "read-write",
"filter": "",
"display": "Interworking EPS Indicator",
"comment": ""
},
{
"name": "ladnIndicator",
"type": "bool",
"value": "1",
"access": "read-write",
"filter": "",
"display": "LADN Indicator",
"comment": ""
},
{
"name": "chargingCharacteristics",
"type": "string",
"value": "0001",
"access": "read-write",
"filter": "4~4",
"display": "Charging Characteristics",
"comment": "4~4"
},
{
"name": "subscribedSessionAmbrUL",
"type": "regex",
"value": "1Gbps",
"access": "read-write",
"filter": "^\\d+(\\.\\d+)?( ?)(bps|Kbps|Mbps|Gbps|Tbps)$",
"display": "Subscribed Session Ambr UL",
"comment": ""
},
{
"name": "subscribedSessionAmbrDL",
"type": "regex",
"value": "2Gbps",
"access": "read-write",
"filter": "^\\d+(\\.\\d+)?( ?)(bps|Kbps|Mbps|Gbps|Tbps)$",
"display": "Subscribed Session Ambr DL",
"comment": ""
},
{
"name": "staticIPAddress",
"type": "ipv4",
"value": "192.168.1.100",
"access": "read-write",
"filter": "",
"display": "Static IP Address",
"comment": ""
},
{
"name": "userPlaneIntegrity",
"type": "enum",
"value": "3",
"access": "read-write",
"filter": "{\"0\":\"null\",\"1\":\"required\",\"2\":\"preferred\",\"3\":\"notNeeded\"}",
"display": "User Plane Integrity",
"comment": ""
},
{
"name": "userPlaneConfidentiality",
"type": "enum",
"value": "3",
"access": "read-write",
"filter": "{\"0\":\"null\",\"1\":\"required\",\"2\":\"preferred\",\"3\":\"notNeeded\"}",
"display": "User Plane Confidentiality",
"comment": ""
},
{
"name": "5qi",
"type": "int",
"value": "9",
"access": "read-write",
"filter": "0~255",
"display": "5qi",
"comment": ""
},
{
"name": "priorityLevel",
"type": "int",
"value": "9",
"access": "read-write",
"filter": "1~127",
"display": "Priority Level",
"comment": ""
},
{
"name": "arpPriorityLevel",
"type": "int",
"value": "6",
"access": "read-write",
"filter": "0~255",
"display": "ARP Priority Level",
"comment": ""
},
{
"name": "arpPreemptCap",
"type": "enum",
"value": "0",
"access": "read-write",
"filter": "{\"0\":\"notPreempt\",\"1\":\"mayPreempt\"}",
"display": "ARP PreemptCap",
"comment": ""
},
{
"name": "arpPreemptVuln",
"type": "enum",
"value": "0",
"access": "read-write",
"filter": "{\"0\":\"notPreemptable\",\"1\":\"preemptable\"}",
"display": "ARP PreemptVuln",
"comment": ""
}
]
}
}
}

View File

@@ -0,0 +1,96 @@
{
"array": [
{
"name": "index",
"type": "int",
"value": "0",
"access": "read-write",
"filter": "0~15",
"display": "Index",
"comment": "0~15"
},
{
"name": "name",
"type": "string",
"value": "def_ambr",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Name",
"comment": "0~32"
},
{
"name": "snssai",
"type": "string",
"value": "1-000001",
"access": "read-write",
"filter": "^\\d{1,3}[A-Fa-f0-9]{6}$",
"display": "Snssai",
"comment": ""
},
{
"name": "dnnList",
"type": "int",
"value": "0",
"access": "read-write",
"filter": "0~3",
"display": "Dnn List",
"comment": "",
"array": [
{
"name": "index",
"type": "int",
"value": "0",
"access": "read-write",
"filter": "0~15",
"display": "index",
"comment": "0~15"
},
{
"name": "dnn",
"type": "string",
"value": "cmnet",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Dnn",
"comment": "0~32"
},
{
"name": "defaultDnnInd",
"type": "bool",
"value": "true",
"access": "read-write",
"filter": "false;true;",
"display": "default Dnn Indicator",
"comment": ""
},
{
"name": "lboRoamingAllowed",
"type": "bool",
"value": "false",
"access": "read-write",
"filter": "{0\": \"false\", \"1\": \"true\"}",
"display": "LBO Roaming Allowed",
"comment": "LBO Roaming Allowed"
},
{
"name": "iwkEpsInd",
"type": "bool",
"value": "false",
"access": "read-write",
"filter": "{\"0\": \"false\", \"1\": \"true\"}",
"display": "Iwk EPS Ind",
"comment": "Iwk EPS Ind"
},
{
"name": "ladnIndicator",
"type": "bool",
"value": "false",
"access": "read-write",
"filter": "{\"0\": \"false\", \"1\": \"true\"}",
"display": "LADN Indicator",
"comment": "LADN Indicator"
}
]
}
]
}

View File

@@ -0,0 +1,40 @@
{
"array": [
{
"name": "index",
"type": "int",
"value": "0",
"access": "read-write",
"filter": "0~15",
"display": "Index",
"comment": "0~15"
},
{
"name": "name",
"type": "string",
"value": "def_ambr",
"access": "read-write",
"filter": "^.{1,32}$",
"display": "Name",
"comment": "1~32"
},
{
"name": "uplink",
"type": "string",
"value": "1Gbps",
"access": "read-write",
"filter": "^\\d+(\\.\\d+)?( ?)(bps|Kbps|Mbps|Gbps|Tbps)$",
"display": "Uplink",
"comment": ""
},
{
"name": "downlink",
"type": "string",
"value": "2Gbps",
"access": "read-write",
"filter": "^\\d+(\\.\\d+)?( ?)(bps|Kbps|Mbps|Gbps|Tbps)$",
"display": "Downlink",
"comment": ""
}
]
}

View File

@@ -0,0 +1,175 @@
{
"list": [
{
"name": "serviceIP",
"type": "ipv4",
"value": "172.16.5.140",
"access": "read-write",
"filter": "",
"display": "Service IP",
"comment": ""
},
{
"name": "servicePort",
"type": "int",
"value": "8080",
"access": "read-write",
"filter": "0~65535",
"display": "Service Port",
"comment": "0~65535"
},
{
"name": "nrfUri",
"type": "regex",
"value": "http://172.16.5.180:8080",
"access": "read-write",
"filter": "^http(s?)\\:\\/\\/(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\:([0-9]|[1-9]\\d|[1-9]\\d{2}|[1-9]\\d{3}|[1-5]\\d{4}|6[0-4]\\d{3}|65[0-4]\\d{2}|655[0-2]\\d|6553[0-5])$",
"display": "NRF URI",
"comment": ""
},
{
"name": "ausfIP",
"type": "ipv4",
"value": "172.16.5.130",
"access": "read-write",
"filter": "",
"display": "AUSF IP",
"comment": ""
},
{
"name": "fqdn",
"type": "regex",
"value": "agt.com",
"access": "read-write",
"filter": "^([0-9A-Za-z]([-0-9A-Za-z]{0,61}[0-9A-Za-z])?\\.)+[A-Za-z]{2,63}\\.?$",
"display": "fqdn",
"comment": ""
},
{
"name": "priority",
"type": "int",
"value": "1",
"access": "read-write",
"filter": "0~4095",
"display": "Priority",
"comment": "0~4095"
},
{
"name": "capacity",
"type": "int",
"value": "4096",
"access": "read-write",
"filter": "0~65535",
"display": "Capacity",
"comment": "0~65535"
},
{
"name": "groupId",
"type": "int",
"value": "0",
"access": "read-write",
"filter": "0~31",
"display": "Group Id",
"comment": "0~31"
},
{
"name": "supiRanges",
"type": "regex",
"value": "imsi-001010100080000~imsi-001010100080099",
"access": "read-write",
"filter": "^imsi-\\d{15}~imsi-\\d{15}$",
"display": "SUPI Ranges",
"comment": ""
},
{
"name": "gpsiRanges",
"type": "string",
"value": "msisdn-69072000~msisdn-69072099",
"access": "read-write",
"filter": "^msisdn-\\d{2,15}~msisdn-\\d{2,15}$",
"display": "GPSI Ranges",
"comment": ""
},
{
"name": "scheme",
"type": "enum",
"value": 0,
"access": "read-write",
"filter": "{\"0\": \"http\", \"1\": \"https\"}",
"display": "scheme",
"comment": ""
},
{
"name": "op0",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op0",
"comment": ""
},
{
"name": "op1",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op1",
"comment": ""
},
{
"name": "op2",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op2",
"comment": ""
},
{
"name": "op3",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "32~32",
"display": "op3",
"comment": ""
},
{
"name": "rlist0",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist0",
"comment": ""
},
{
"name": "rlist1",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist1",
"comment": ""
},
{
"name": "rlist2",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist2",
"comment": ""
},
{
"name": "rlist3",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist3",
"comment": ""
}
]
}

View File

@@ -0,0 +1,175 @@
{
"system": [
{
"name": "serviceIP",
"type": "ipv4",
"value": "172.16.5.140",
"access": "read-write",
"filter": "",
"display": "Service IP",
"comment": ""
},
{
"name": "servicePort",
"type": "int",
"value": "8080",
"access": "read-write",
"filter": "0~65535",
"display": "Service Port",
"comment": "0~65535"
},
{
"name": "nrfUri",
"type": "regex",
"value": "http://172.16.5.180:8080",
"access": "read-write",
"filter": "^http(s?)\\:\\/\\/(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\:([0-9]|[1-9]\\d|[1-9]\\d{2}|[1-9]\\d{3}|[1-5]\\d{4}|6[0-4]\\d{3}|65[0-4]\\d{2}|655[0-2]\\d|6553[0-5])$",
"display": "NRF URI",
"comment": ""
},
{
"name": "ausfIP",
"type": "ipv4",
"value": "172.16.5.130",
"access": "read-write",
"filter": "",
"display": "AUSF IP",
"comment": ""
},
{
"name": "fqdn",
"type": "regex",
"value": "agt.com",
"access": "read-write",
"filter": "^([0-9A-Za-z]([-0-9A-Za-z]{0,61}[0-9A-Za-z])?\\.)+[A-Za-z]{2,63}\\.?$",
"display": "fqdn",
"comment": ""
},
{
"name": "priority",
"type": "int",
"value": "1",
"access": "read-write",
"filter": "0~4095",
"display": "Priority",
"comment": "0~4095"
},
{
"name": "capacity",
"type": "int",
"value": "4096",
"access": "read-write",
"filter": "0~65535",
"display": "Capacity",
"comment": "0~65535"
},
{
"name": "groupId",
"type": "int",
"value": "0",
"access": "read-write",
"filter": "0~31",
"display": "Group Id",
"comment": "0~31"
},
{
"name": "supiRanges",
"type": "string",
"value": "imsi-001010100080000~imsi-001010100080099",
"access": "read-write",
"filter": "^imsi-\\d{15}~imsi-\\d{15}$",
"display": "SUPI Ranges",
"comment": ""
},
{
"name": "gpsiRanges",
"type": "string",
"value": "msisdn-69072000~msisdn-69072099",
"access": "read-write",
"filter": "^msisdn-\\d{2,15}~msisdn-\\d{2,15}$",
"display": "GPSI Ranges",
"comment": ""
},
{
"name": "scheme",
"type": "enum",
"value": 0,
"access": "read-write",
"filter": '{"0": "http", "1": "https"}',
"display": "scheme",
"comment": ""
},
{
"name": "op0",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op0",
"comment": ""
},
{
"name": "op1",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op1",
"comment": ""
},
{
"name": "op2",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{32}$",
"display": "op2",
"comment": ""
},
{
"name": "op3",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "32~32",
"display": "op3",
"comment": ""
},
{
"name": "rlist0",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist0",
"comment": ""
},
{
"name": "rlist1",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist1",
"comment": ""
},
{
"name": "rlist2",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist2",
"comment": ""
},
{
"name": "rlist3",
"type": "string",
"value": "7983658960860C9E56732E0B307E693B",
"access": "read-write",
"filter": "^[A-Fa-f0-9]{10}$",
"display": "rlist3",
"comment": ""
}
]
}

View File

@@ -0,0 +1,49 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
AmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
AmfGuamiList: ""
SnssaiList: ""
MaxUser: ""
RelativeCapacity: ""
MaxGnbNum: ""
EpRpDynN8Amf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN11Amf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN12Amf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,48 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
SmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
MaxPduSessions: ""
MaxQfi: ""
UpfList: ""
AddrPool:
Id: ""
UserLabel: ""
AddrType: "Static"
IpVersion: ""
AddrSegList: ""
EpRpDynN7Smf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN10Smf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,39 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
UdmFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
UdrFunction:
Id: ""
UserLabel: ""
AddrType: "Static"
IpVersion: ""
AddrSegList: ""
AusfFunction:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

141
build/config/cm/cm-upf.yaml Normal file
View File

@@ -0,0 +1,141 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
InventoryUnitRack:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
MaxPduSessions: ""
MaxQfi: ""
UpfList: ""
InventoryUnitShelf:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
RackPosition: ""
InventoryUnitPack:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
PortsInformation: ""
PackPosition: ""
SlotsOccupied: ""
InventoryUnitHost:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
HostPosition: ""
NumberOfCpu: ""
MemSize: ""
HardDiskSize: ""
InventoryUnitAccessory:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
AccessoryPosition: ""
AccessoryType: ""
AddtionalInformation: ""
UpfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
MaxQosFlows: ""
MaxThroughput: ""
EpRpDynN9Upf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN3Upf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
AmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
UdrFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
AusfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,29 @@
-----BEGIN CERTIFICATE-----
MIIE3TCCAsWgAwIBAgIBATANBgkqhkiG9w0BAQsFADAQMQ4wDAYDVQQKEwVHbyBD
QTAeFw0yNDAxMDkwNzEyNTVaFw0zNDAxMDYwNzEyNTVaMBAxDjAMBgNVBAoTBUdv
IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAx/mmbhCZS4XFvbn0
btk8SuetjziP3kJ4/ijpwr8WD0JeskFf2qILNOCQMBOWqyxrd6kYCMyrrb/c5mX9
q23TgV6qghp/0xoA70SHvcqv6F4ssOJSvaN29ud3puKyWgvToNGY/z5pU0IQCUtQ
6CJWJo4gUaB/5vH1ipheU7Xsiw5bNeFaWQ/nxsTwvoZVfk7noiAMd/W8nAGJbhxC
ByJhs1AZQ9d4yEezLrpyDqOdehffrEse+8BlytqkKhHYinAE4pqgeDcln05fxWrz
zzYRw2GiHFfioo4labueTe8eoOBHYJpFmthfdsgrth9+aSA5GKHpXQ0rzaahgcGU
+S9XFjYxWkMXMiUQhCFNd+1IFi0NsLas04UwXLu1x4CL7d/BRlzR6ezwq6hnxTOc
FMXAcpnfnKzF7WOHvGa/dsr92hpX48K64cHtlCLfeRR4E/60LJ6FYjqpNKgai+s+
sbeOOyKskCQ0wHNElrebojdYlkXzam0rKbnNJNERx8/v48cwt0F5LNnN6a2CDVPN
LGMwBSNDZbiiI53Q6DE7H71XkZjkR0NRqmcIm+ElecpBLavicqfNlg8JLoorJQSW
oiSJmyxqIjnqNrfmk/l30jI2lVal4c1QSBFrFsob9rBLkXGM1EWb0PSMrwZM29et
Ch8zvN7FlOPC76cIw2QmAxWVJ+kCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgKkMA8G
A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFOCdRGl2aikRXamo4qJu9wQ7kqI9MA0G
CSqGSIb3DQEBCwUAA4ICAQC/osh2VHoJoyG8Z3vdLH+0XZ04I8Ih2BQBcPKPZ1v0
vdVDrQ6ldkgSKhM+/of9XtzvtphV7Yxq4LFipu9HE2xNmZjOMXZgsGgQ4qS3KkDk
u0/q7ZmE8MG7uLW76m7PGNO4Ugz3k6yVx0KVC/Fy9YdWwKkl8nL93nPqWRsN/jwE
WRyZ822Xnz19cY5vFbaO5fO1hW5+3U50Kh7BWuyd7TZ+OT8KmY834DKLDDnWdcPW
/k6Je1Y0H79E/SIjFkCxCNTDNS5SVHfTr0BCbVMXXi5dbNTjhY41TM+JwIKa1fVB
YhzWqk16riDYa+bg2xcdda8B0lQT8qRrMGFtjPsqyNhNoTFRUXx9HKX3VBIXqmlD
7v7lCWbvXkCjb2mAEG5ayy1lHKkOd6Q1E0HXZST2PHIippOFwndGz0P9tij+g1Df
cDisGxdfOZwpJTLhO5QYDom6YQgcWxfOUPK1HVnRrbniEQIykHldoIk3YL+vGwRZ
qEcJDf4F98KyxfYv9OvMGfP+imyOg4Yh4HKt4Cm+WxoKbF+qO3kPgXzGgLfthKNe
qi8fKCnbe91yuXzvKfjtfS7SYz9E0mlZkUUcpQ9r7thk4xEF5PHxHjFzZYzLX5c3
SMfjmtiTnD0wPFlaDtd/3absBC7xHCfs3v+DfyKyuYOvi2CUHiR2k8sZIDaEpwxF
Dw==
-----END CERTIFICATE-----

View File

@@ -0,0 +1,23 @@
-----BEGIN CERTIFICATE-----
MIID4TCCAcmgAwIBAgIBAjANBgkqhkiG9w0BAQsFADAQMQ4wDAYDVQQKEwVHbyBD
QTAeFw0yNDAxMDkwNzEyNTVaFw0zNDAxMDYwNzEyNTVaMBQxEjAQBgNVBAoTCUdv
IE9NQyBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPidCkI9UhWg
7EOKoS/JGH95Q3ekfU+rK0EULJbJfeszJkYZ2u2gQ5gbBcyWUQvFhOuFpgcchsGA
Vy3QfudO0Jxysf67rBFFjyB2NQXc68B3zJS5L+N9P0XEwgz9hr9rijDrNT8RvY+z
L8Blrbl4oBEssOEyFOBYkHIMlvUEIMZYaA1NPA+Wwk8x3ENS1YVGml5u7JBk2oe2
gHDktHe98hU0Nd88K3ZxGte3pwmeynMslTw9Oct6Wy2fu0zcZlnJZPmoY2LXYyhx
mj9oO3n5KgXxHlfGxPl5N2lqu/tmAr/1fAwUKVHUZzpmIbEyqMTDow8qTvjYa4o/
41Bvg1JOrDsCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB/wQFMAMB
Af8wHQYDVR0OBBYEFJ2woDwnDKwmU3bU8cA+EAG0MVMwMA0GCSqGSIb3DQEBCwUA
A4ICAQAuT4aMkcJWZeAJXGjSxSCoLclnrQw4SAVjNvIUNS83+0flHLTFzj1fAU4M
/RZjZE22mdF+wgAhMfC+zoJq7plHELSkG9HY1dmscK7MVRrVdnooYD+HXS8rjOaD
oUapFmEK5ivXF6Cx1gQoPeo/Q0FRDd9Ky5rjB0vWFxsnU/BZkfOLCC2zQoZcL+UN
rmSq+iPkUMvFDVWSR/XY+xtXaW9GboqaqtoNvR24RSquI5xe1Co7JuDuu+j83lv/
5YpOG14pNA3IF6TNFChR63l/VkaT15QDSnKxSgIQdcaPuv9yvA7OPIiaTOAqcDKi
4RSTqRezh6TnbWIFSJI03EY8gFa7PkelcWqurCXgc4vevC3bLAHuys4QIVboq0yw
CmCMVmJtgyXT15yc4x+ivwHyDT25wI2ynPnoXgKqzudFav0ZhoR7l2YmH2by7wrN
5AnNbyer72NJhKRleLyboPtqWwTLfvtOW2Aqbg+cWKwTq9NNAqJ47tZ1ZrCuWI/H
oOehNKM5QpW5k6shWuOmhYD9kROE/D1U9huzGEzijUZkT4yUF0udCNoFofz6wl4t
Czk1+Pjd3tecIj9/NitBiDzjCPJVXeAOphvCO0Z0R5fKA+Y/4kd+HmiuNiW1tnGG
D7z+beF+SsnagRquwdfZTpICfu/2+ogHwfxpsm8cHhx8DzMslA==
-----END CERTIFICATE-----

View File

@@ -0,0 +1,18 @@
-----BEGIN CERTIFICATE-----
MIIC2jCCAcKgAwIBAgIBAzANBgkqhkiG9w0BAQsFADAUMRIwEAYDVQQKEwlHbyBP
TUMgQ0EwHhcNMjQwMTA5MDcxMjU1WhcNMzQwMTA2MDcxMjU1WjAVMRMwEQYDVQQK
EwpPTUMgU2VydmVyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApSTG
HNOWScYVHHiGw9z8q2u3ZMUaOFBm6+F4p4PrpM1h3FtHmYv5IWr5kqoMgCU/FmPG
HrSqDzrm+J4QMdguq40Jd4QOadiDg5oyLIM6Su32sjtG/y5an3abtY9hNCoWDdpy
kNRb1i9NQ2uTSBHm1lTVWutZWgm7D9jES8JB2byDwAOONwGlqAw6buxUlIP2vCtn
SpMF8Mqdypnw8K17DLXpP+D8Exw4mjOmJEVOGnw/pinjDCHm9SEiFtagdXIWliwl
DgbyVeSE70JhaGV2bGlmldV2sN2qPvG/W99pCeObxNcCko9JdJqsDVQTiOTY6uaH
o/GdDnzZh4TbbDutDQIDAQABozYwNDAOBgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAww
CgYIKwYBBQUHAwEwDQYDVR0OBAYEBAECAwQwDQYJKoZIhvcNAQELBQADggEBAJY6
eI54wSn+kNteFEdoFS2jVM+GAMS0x4blX2wzNro6HqhlYC6oJ8TxRS6V22ugWLFX
M/pcqV5FA1XCSibYdwscdaoUSUYc6inlkHxrbfSryiQqXAkEv8Ote3dqtOu7Z0BY
PkykdMrCUXn5ksYgoTa7G1CdAiaKMeuTz801l1g8AIOpNV1+Xhi29TKA134VDW9S
2aDcD6jEs63rqKx/knStli0F58N0kOKjmmt45stP90o5NsshAMumzP0xhfwC94Gg
eBXg6ThM3nuOBQyzPEtUZioRKKV4XmgZF/F4ePCnS4ST9ft09kx7UcR9MVzGIHov
whwVw6o5O7h1xQr6Pjw=
-----END CERTIFICATE-----

View File

@@ -0,0 +1,27 @@
-----BEGIN RSA PRIVATE KEY-----
MIIEowIBAAKCAQEApSTGHNOWScYVHHiGw9z8q2u3ZMUaOFBm6+F4p4PrpM1h3FtH
mYv5IWr5kqoMgCU/FmPGHrSqDzrm+J4QMdguq40Jd4QOadiDg5oyLIM6Su32sjtG
/y5an3abtY9hNCoWDdpykNRb1i9NQ2uTSBHm1lTVWutZWgm7D9jES8JB2byDwAOO
NwGlqAw6buxUlIP2vCtnSpMF8Mqdypnw8K17DLXpP+D8Exw4mjOmJEVOGnw/pinj
DCHm9SEiFtagdXIWliwlDgbyVeSE70JhaGV2bGlmldV2sN2qPvG/W99pCeObxNcC
ko9JdJqsDVQTiOTY6uaHo/GdDnzZh4TbbDutDQIDAQABAoIBAHxE49+lSJ5TNGes
Op0AmhHUiLiHqWde+VPe4xALMTNeaZmMBqEAt4PyH8PBuo5jeMm8YsWQZbf4Nv42
0zDu4I+vHcSV1tLHXo+VZNQiG6du0gjkmlRD6WW9twY00oySbu4Vx8g8RK80AQwO
01GURwRZ6gL0vtQGJoGSOIRZtXvGLltVR52OfkgNMjNepwtJvMV7PW5xYwEcnx+i
sZD/6hl49Qv5g4dCCGrnr8Garx9+cUkVP/ipkBnjyKACfzYQhoauo03Rv4iuNdy6
QD9KB95ALHq66vYXF72YW75JQhQ3C1qGcghNn68RIlufSnA7D7J9VCG5VSXfVrk2
a5Xw2HECgYEAzaXU75hl87fmf88X+8M6+OuaMnnLAwIadbcecakkO4bgzNF1SYwv
dbZ608LvdUt+BYVU43CCX3//a/MI+Ncp5sk85TLsXUxXGWonO1zXpa3+BAEXJe1n
xnWVdytWMeoyzhBZ/Vkx7/NAu5WSViXgQ3trB0Wr3OGw3Nksb4Son8cCgYEAzZQc
SlglEiU+Z+BsCV07FEkU6xgsmxQQuptPuGcm713Ik8c8a5KAyjbhpp+oBvn8v69i
hVGHcFmZYeazBL39dC4/6E/wDOVEwN2fY8oYBnrPvoz7FUTvObRjZakrgVj+XAjS
lg9RuMm1tYPFR52V5BTngJ9Rkj/AewxWnGMDtIsCgYEAng1i/5ZQXSUs+XPwCeY9
b8yb4Ulr9u7p6SkJM+/8UefS5HfjPdiJLV5HPnOm2K5ht9qGqJrzCHT2mT/b2Gx9
3ssxizI9KWOf2X+VkXFEqCh2fxtbcCHrTUNX0ZQ0Ff7adzdoAmhIEhQR31oQczd/
Cj5Tvu4ULZoj9UjQdxEtDEcCgYAYrW3T8s7IZdYe7A6r9RgRcFBlhCpel0MG03v3
W9KNq0lXi/QRya1SGNJviPzHkZyoeeourMHAV9EUsnfM2u2g06hyP55GPgNJz5DB
jtHhfT6Q1iWRwQuidqfz3SHOzhsCe0CkKMSblQMN/fphhWYn0eaURwuoraRyYOHI
tg4MzwKBgGImdyBx/l6bkWa4GywZ9iw5RDe7KYN9UclnBcHDkIELXskp8bTbwpBy
m/IyLC5eLOzdK7c2Odtd3LP/AG5fYPAzQ5S6YmSDPp1JEKODbg51wcMJpLSvG2Q/
P5paV/ZAKbxgXpilBrjSejM/QLYqD8756z5lgo5biR7bGkBA+nkj
-----END RSA PRIVATE KEY-----

View File

@@ -0,0 +1,18 @@
-----BEGIN CERTIFICATE-----
MIIC5DCCAcygAwIBAgIBBDANBgkqhkiG9w0BAQsFADAUMRIwEAYDVQQKEwlHbyBP
TUMgQ0EwHhcNMjQwMTA5MDcxMjU2WhcNMzQwMTA2MDcxMjU2WjAWMRQwEgYDVQQD
EwtzZXJ2ZXIxLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK2S
c4sRbErMBY8q8JVzNWRDBUUIWRBI6ENWCR/SzvF1a5gkxTnTWLtn4Szkclbsbwij
YWEXcuGaodIiY7gjJ8KM+x2qaFRVOxIoyTZvshBQUS8R8YPhnmQZHvEmoVScw9R3
yKNLmIiXaTltP1tLoF+KSl6icqmY1bepDuhrZrYc4rLlU+BKvcWHf2xOozzd5KxX
ENaLWkIEWNWHOHWoScp8nfYNttEmz+kOwjikothkEfsXbFImNsdDrNk3ZYFUFnjv
S2lJPzwlc0hd+iHU5yC1YBDgAGpITSni0HqOzghNPHwwakGa96jGYw69AU1fAssI
TEELmhhwlHGm/MX+5IcCAwEAAaM/MD0wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQM
MAoGCCsGAQUFBwMBMBYGA1UdEQQPMA2CC3NlcnZlcjEuY29tMA0GCSqGSIb3DQEB
CwUAA4IBAQDqoK6iKz7Q8L+0GgqD84tXJFbJKGnJNkyJaw/jCxlL6A8QTO7IB/ym
zZL3PcdNZYlyiNbyN62WzBKjYUaZMsXxEFtutav1GQsWmtQb3SO5Nn/8t+HFUwEt
YJc09LoLlYLOII0n8mN+CaMwv1mfZjWKewdXgwXvNzMrhOWJF9r+tRaJefNDpuT/
dRj+iKFXG0aH4gCOc7Ur0HYjlQ+OFvUgWEOpk2OS1JeBNi4HjiQdAZbREg7PQI0D
sjMaHMIHC9WPZzEQ9InLmZzu0n++FKHFo8htz2bQFsNJNSB44pcKkJvpt1Xq854/
rvcwWe89C7y5JCJGlzvHpGRecEMFPsZU
-----END CERTIFICATE-----

View File

@@ -0,0 +1,27 @@
-----BEGIN RSA PRIVATE KEY-----
MIIEpQIBAAKCAQEArZJzixFsSswFjyrwlXM1ZEMFRQhZEEjoQ1YJH9LO8XVrmCTF
OdNYu2fhLORyVuxvCKNhYRdy4Zqh0iJjuCMnwoz7HapoVFU7EijJNm+yEFBRLxHx
g+GeZBke8SahVJzD1HfIo0uYiJdpOW0/W0ugX4pKXqJyqZjVt6kO6GtmthzisuVT
4Eq9xYd/bE6jPN3krFcQ1otaQgRY1Yc4dahJynyd9g220SbP6Q7COKSi2GQR+xds
UiY2x0Os2TdlgVQWeO9LaUk/PCVzSF36IdTnILVgEOAAakhNKeLQeo7OCE08fDBq
QZr3qMZjDr0BTV8CywhMQQuaGHCUcab8xf7khwIDAQABAoIBAE+rFe+yGpOmW7Lg
Ebd3Pv17KbMK5t5rqHgnyF5cA3Ke47jcv84P7P1v69IQNU8ijMBZRXwsKCXXNQlf
kYfWUwygay6tpd93k3p9UAX1dLS6ONkzEjjnWS02vpYPliNhJR2jsWsKasPfQ4QB
WgBMkRrpPcN8KscfiJEZPud9TJKvo/ffMDNOM01d2Lyytqt4mVvbQa68EjwoBSGe
6AEsEjoiLnnxlzuXXGCEcTXOEfcUeF8Bbk74lCJDdeXgrUB/Uy28FlhELsLpg2TD
IvwgJ3vFYEZzNKAVTsr4V8no8n4GButdQlSCpofACWx6mhq03535b+mSgN4AKLzR
YkhaQcECgYEA0x00F6rCneNzQ/b1wFK24OD59Nwu0NjKWYylXR++bbDHD/raJSCY
hBGFk/QB6KPVxH9ovoSSzov3o7nYBSXlTZCCm3Y1feaykHWkhKEsHcJ1tQXPehxe
40do8KI4vbaZwFk/gB4K5PQorizKDf3LEzz4R6TEFxVkzv4y4pq4yycCgYEA0nnc
tJnU1OtJNVW12+ABeiKxFbtAMpHGtqbg+ZJ9VRLJa813WkKbAtDMFTyvQa4sdIzV
F4yeApow4LILLICIcj8XfU0noGxmHAB66PgGPfx3Rj+AUxP7e24/vgF4DydKIr2J
5jwQc5EmCFBR0aQpmJsd808PtKPXJT5mIJrod6ECgYEAvmQ39qApo/rcmQ6/0xLF
m0lKI2nvTqo0003kVHesZYBoBiFVWuZqpbCnpycIEaavwuaksC0fuObCDwYrq3jh
s3IAV/PjigfkQiPWm0Y/Yxdc0ETNOHMdoBtmqJ2kTnO/dZkHi6OMb69CgNIj5zpb
Sp5Ry0rtDWRd5c+aVIL05UECgYEAtRPQlLQQDkqKhk9CEXOL8cbs8VRS6+7MthGm
VjD4kPuDvLJdb5MEB40ZN2ApK2msp20OW59HxddgG8Axqsy+FwQ+sjdx0yvPQWIM
XGgd/rA48X/qaA81+cAlKNPctbTIrFDC1ghw4uxKezaW3bTNcJRrVQt86J1YmJsx
g/Wh8GECgYEAhYFWpiMqcwoYYY7BFrYK4QGxPZ5OESevnJOvMRra5m+qlHhS8X9f
0Ewos6yV2qFZB7lRiPMve85ysUySwKl3rTWoJuwAlZZOkXU3MCjJ+5+nvMm7jzgf
eKWNu8avLOENdRu1bIFKM8iTVs+zDpe8LpcuEs4D+Ql7Gw2+9cZmanw=
-----END RSA PRIVATE KEY-----

View File

@@ -0,0 +1,49 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
AmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
AmfGuamiList: ""
SnssaiList: ""
MaxUser: ""
RelativeCapacity: ""
MaxGnbNum: ""
EpRpDynN8Amf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN11Amf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN12Amf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,48 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
SmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
MaxPduSessions: ""
MaxQfi: ""
UpfList: ""
AddrPool:
Id: ""
UserLabel: ""
AddrType: "Static"
IpVersion: ""
AddrSegList: ""
EpRpDynN7Smf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN10Smf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,39 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
UdmFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
UdrFunction:
Id: ""
UserLabel: ""
AddrType: "Static"
IpVersion: ""
AddrSegList: ""
AusfFunction:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,141 @@
ManagedElement:
Id: ""
UserLabel: ""
VendorName: ""
ManagedBy: ""
ManagementIpAddress: ""
SwVersion: ""
PatchInfo: ""
AdministrativeState: ""
OperationalState: ""
InventoryUnitRack:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SbiServiceList: ""
MaxPduSessions: ""
MaxQfi: ""
UpfList: ""
InventoryUnitShelf:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
RackPosition: ""
InventoryUnitPack:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
PortsInformation: ""
PackPosition: ""
SlotsOccupied: ""
InventoryUnitHost:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
HostPosition: ""
NumberOfCpu: ""
MemSize: ""
HardDiskSize: ""
InventoryUnitAccessory:
Id: ""
UserLabel: ""
VendorUnitFamilyType: ""
VendorUnitTypeNumber: ""
VendorName: ""
SerialNumber: ""
VersionNumber: ""
DateOfManufacture: ""
DateOfLastService: ""
ManufacturerData: ""
AccessoryPosition: ""
AccessoryType: ""
AddtionalInformation: ""
UpfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
MaxQosFlows: ""
MaxThroughput: ""
EpRpDynN9Upf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
EpRpDynN3Upf:
Id: ""
UserLabel: ""
LocIpAddrList: ""
FarIpSubnetworkList: ""
AmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
SmfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
UdrFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
AusfFunction:
Id: ""
UserLabel: ""
AdministrativeState: ""
OperationalState: ""
VnfInstanceId: ""
Fqdn: ""
IPResource:
Id: ""
UserLabel: ""
InterfaceType: ""
LocIpV4AddrList: ""
LocIpV6AddrList: ""

View File

@@ -0,0 +1,21 @@
# file: log file name
# level: /trace/debug/info/error/warn/error/fatal, default: debug
# duration: saved days, default is 30 days
logger:
file: /usr/local/omc/log/captrace.log
level: trace
duration: 24
count: 10
gtp:
addr: :2153
database:
type: mysql
user: root
password: 1000omc@kp!
host: 127.0.0.1
port: 33066
name: omc_db

View File

@@ -0,0 +1,44 @@
# file: log file name
# level: /trace/debug/info/warn/error/fatal, default: debug
# duration: saved days, default is 30 days
logger:
file: /usr/local/omc/log/crontask.log
level: trace
duration: 24
count: 90
omc:
name: OMC01
hosturi: http://127.0.0.1:33030
hostno: A001
province: GD
netabbr: HX
vendor: ""
tasks:
file: /usr/local/omc/etc/tasks.yaml
database:
type: mysql
user: root
password: 1000omc@kp!
host: 127.0.0.1
port: 33066
name: omc_db
backup: /usr/local/omc/database
# northbound interface, cm/pm
# duration(day): saved days
# zipPeriods(day): periods of zip pm data file
nbi:
cm:
cfgfiledir: /usr/local/omc/etc/cm
xmlfiledir: /opt/omc/ftp
version: V1.0.1
duration: 30
pm:
cfgfiledir: /usr/local/omc/etc/pm
xmlfiledir: /opt/omc/ftp
version: V1.0.1
duration: 30
zipPeriods: 1

View File

@@ -0,0 +1,174 @@
# file: log file name
# level: /trace/debug/info/warn/error/fatal, default: debug
# duration: rotation time with xx hours, example: 1/12/24 hours
# count: rotation count of log, default is 30 rotation
logger:
file: /usr/local/omc/log/restagent.log
level: debug
duration: 24
count: 90
# rest agent listen ipv4/v6 and port, support multiple routines
# ip: 0.0.0.0 or ::0, support IPv4/v6
# clientAuthType: 0:NoClientCert (default), 1:RequestClientCert, 2:RequireAnyClientCert,
# 3:VerifyClientCertIfGiven, 4:RequireAndVerifyClientCerts
rest:
- ipv4: 0.0.0.0
ipv6:
port: 33030
- ipv4: 0.0.0.0
ipv6:
port: 33443
schema: https
clientAuthType: 0
caFile: /usr/local/omc/etc/certs/omc-ca.crt
certFile: /usr/local/omc/etc/certs/omc-server.crt
keyFile: /usr/local/omc/etc/certs/omc-server.key
webServer:
enabled: true
rootDir: /usr/local/omc/htdocs/front
listen:
- addr: :80
schema: http
- addr: :443
schema: https
clientAuthType: 0
caFile: /usr/local/omc/etc/certs/omc-ca.crt
certFile: /usr/local/omc/etc/certs/omc-server.crt
keyFile: /usr/local/omc/etc/certs/omc-server.key
database:
type: mysql
user: root
password: 1000omc@kp!
host: 127.0.0.1
port: 33066
name: omc_db
backup: /usr/local/omc/database
# Redis data cache
redis:
dataSource:
# OMC system db
default:
port: 6379 # Redis port
host: "127.0.0.1" # Redis host
password: ""
db: 10 # Redis db_num
# UDM sub/auth db
udmuser:
port: 6379 # Redis port
host: "127.0.0.1"
password: ""
db: 0 # Redis db_num
# used to specify the default data source for multiple data resourece
defaultDataSourceName: "default"
# sleep: time delay for after write buffer (millisecond)
# deadLine: timeout for io read and write (second)
mml:
port: 4100
port2: 5002
sleep: 200
deadLine: 10
user: admin
password: admin
mmlHome: ./mmlhome
upload: /home/agtuser
# NE config
ne:
user: agtuser
etcdir: /usr/local/etc
bindir: /usr/local/bin
omcdir: /usr/local/omc
scpdir: /tmp
licensedir: /usr/local/etc/{neType}/license
# backup etc list of IMS, does not contain spaces
etcListIMS: '{*.yaml,mmtel,vars.cfg}'
etcListDefault: '{*.yaml,*.conf,*.cfg}'
# true/false to overwrite config file when dpkg ne software
dpkgOverwrite: false
# dpkg timeout (second)
dpkgTimeout: 180
# chk2ne: true/false, if put OmcNeConfig parameters to NE
omc:
uriPrefix: "/omc/rest"
neType: OMC
neId: 001
rmUID: 4400HX101
neName: OMC
province: GD
vendor: ""
dn: 4600
chk2ne: false
sn: "-"
checksign: false
rootDir: /usr/local/omc
binDir: /usr/local/omc/bin
backup: /usr/local/omc/backup
upload: /usr/local/omc/upload
frontUpload: /usr/local/omc/htdocs/front/upload
frontTraceDir: /usr/local/omc/htdocs/front/trace
software: /usr/local/omc/software
license: /usr/local/omc/license
gtpUri: gtp:192.168.2.119:2152
checkContentType: false
testMode: false
rbacMode: true
runDir: /usr/local/omc/run
cmdTimeout: 120
# Alarm module setting
# Forward interface:
# email/sms
alarm:
forwardAlarm: true
email:
smtp: smtp.xxx.com
port: 25
user: smtpuser@xxx.com
password: xxxxxx
# TLS skip verify: true/false
tlsSkipVerify: true
sms:
apiURL: http://smsc.xxx.com
accessKeyID: xxx
accessKeySecret: xxx
signName: XXX SMSC
templateCode: 1000
# User authorized information
# crypt: mysql/md5/bcrypt
# token: true/false to check accessToken
# expires for session, unit: second
# Support single/multiple session of user
#
auth:
crypt: bcrypt
token: true
expires: 1800
session: multiple
publicKey: /usr/local/omc/etc/certs/omc
privateKey: /usr/local/omc/etc/certs/omc
# Parameter for limit number
# rmuid_maxnum: the max number of rmUID, default: 50
# alarmid_maxnum: the max number of AlarmID, default: 50
# pmid_maxnum: the max number of pmID, default: 50
# subid_maxnum: the max number of subscription ID, default: 20
# uri_maxlen: the max length of uri, default: 8192
# rmuid_regexp: regexp pattern of rmUID
params:
rmuidmaxnum: 50
alarmidmaxnum: 50
pmidmaxnum: 50
subidmaxnum: 20
urimaxlen: 2100000
rmuidregexp: "[0-9]{4}[A-Z]{2}[A-Z]{2}[0-9A-Z]{1}[0-9A-Z]{3}[0-9A-Z]{1,16}"
testConfig:
enabled: false
file: /usr/local/omc/etc/testconfig.yaml

View File

@@ -0,0 +1,51 @@
# file: log file name
# level: /trace/debug/info/warn/error/fatal, default: debug
# duration: rotation time with xx hours, example: 1/12/24 hours
# count: rotation count of log, default is 30 rotation
logger:
file: /usr/local/omc/log/sshsvc.log
level: debug
duration: 24
count: 30
# file: MML log file name
# duration: rotation time with xx hours, example: 1/12/24 hours
# count: rotation count of log, default is 30 rotation
# level: cmd/ret log cmd/log cmd & result
logmml:
file: /usr/local/omc/mmllog/omcmml.log
duration: 24
count: 30
level: cmd
# ssh service listen ipv4/v6 and port, support multiple routines
# ip: 0.0.0.0 or ::0, support IPv4/v6
# session: single/multiple session for one user
sshd:
listenAddr: 0.0.0.0
listenPort: 22222
privateKey: /usr/local/omc/.ssh/id_rsa
maxConnNum: 20
timeout: 1800
session: multiple
mmlHome: /usr/local/omc/mmlhome
database:
type: mysql
user: root
password: 1000omc@kp!
host: 127.0.0.1
port: 33066
name: omc_db
omc:
httpUri: http://127.0.0.1:33030
userCrypt: bcrypt
ne:
port: 4100
sleep: 200
user: admin
password: admin

View File

@@ -0,0 +1,183 @@
# example:
# tasks:
# - name: test # task comment
# uri: # restful uri
# params: # params of url
# interval: 30 # do sometion in the interval
# unit: Seconds #Seconds/Minutes/Hours/Days/Weeks, Monday/Tuesday/.../Sunday,
# at: 00:10:00 # do at time such as xx:xx:xx
# do: HelloWorldTask # (Do what: callback function)
#
# Attention: must restart crontask after modified this file
#
tasks:
- name: test # task comment
status: Active #active/inactive
uri: # restful uri
params: # params of http url
body: # body of http request
interval: 60 # do sometion in the interval
unit: Seconds #Seconds/Minutes/Hours/Days/Weeks, Monday/Tuesday/.../Sunday,
at: 00:10:00 # do at time such as xx:xx:xx when unit such as Day/Days/Mondays...
do: TaskHelloWorld # (Do what: callback function)
- name: clear expired history alarm
status: Inactive
uri: /api/rest/databaseManagement/v1/omc_db/alarm
params: WHERE=now()+>+ADDDATE(event_time,+interval+(SELECT+`value`+FROM+config+WHERE+config_tag='historyDuration')+day)+and+alarm_status='0'
interval: 1
unit: Days
at: 00:10:00
do: TaskDeleteExpiredRecord
- name: clear expired history gold_kpi
status: Inactive
uri: /api/rest/databaseManagement/v1/omc_db/gold_kpi
params: WHERE=now()+>+ADDDATE(`date`,+interval+IFNULL((SELECT+`value`+FROM+config+WHERE+config_tag='goldKpiDuration'),7)+day)
interval: 1
unit: Days
at: 00:12:00
do: TaskDeleteExpiredRecord
- name: clear deleted custom pm kpi
uri: /api/rest/databaseManagement/v1/omc_db/pm_custom_title
params: WHERE=now()+>+ADDDATE(update_time,+interval+(SELECT+`value`+FROM+config+WHERE+config_tag='keepPMCKpi')+day)+and+status='Deleted'
interval: 1
unit: Days
at: 00:15:00
do: TaskDeleteExpiredRecord
- name: update expired user session
status: Inactive
uri: /api/rest/databaseManagement/v1/omc_db/session
params: WHERE=NOW()+>+ADDDATE(shake_time,+interval+expires+second)+and+status='online'
body: '{"session":{"status":"offline"}}'
interval: 30
unit: Seconds
at:
do: TaskUpdateTable
- name: clear expired log
status: Inactive
uri:
params:
interval: 1
unit: Days
at: 00:50:00
do: TaskDeleteExpiredRecord
- name: Backup measure data
uri: /api/rest/databaseManagement/v1/omc_db/measure_data
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'id','date','task_id','ne_name','rm_uid','ne_type','granul_option','kpi_code','kpi_id','kpi_ext','start_time','end_time','value','timestamp'+union+select+id,date,task_id,ne_name,rm_uid,ne_type,granul_option,kpi_code,kpi_id,kpi_ext,start_time,end_time,value,timestamp+from+measure_data)+b
interval: 1
unit: Days
at: 00:20:00
do: TaskDBBackupCSVGetBySQL
- name: Backup operation log
uri: /api/rest/databaseManagement/v1/omc_db/operation_log
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'op_id','account_name','op_ip','subsys_tag','op_type','op_content','op_result','begin_time','end_time','vnf_flag','log_time'+union+select+op_id,account_name,op_ip,subsys_tag,op_type,op_content,op_result,begin_time,end_time,vnf_flag,log_time+from+operation_log)+b
interval: 1
unit: Days
at: 00:26:00
do: TaskDBBackupCSVGetBySQL
- name: Backup security log
uri: /api/rest/databaseManagement/v1/omc_db/security_log
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'id','account_name','account_type','op_ip','op_type','op_content','op_result','op_time'+union+select+id,account_name,account_type,op_ip,op_type,op_content,op_result,op_time+from+security_log)+b
interval: 1
unit: Days
at: 00:28:00
do: TaskDBBackupCSVGetBySQL
- name: Backup alarm log
uri: /api/rest/databaseManagement/v1/omc_db/alarm_log
params: SQL=select+*+into+outfile+'%s'+fields+terminated+by+','+escaped+by+''+optionally+enclosed+by+''+lines+terminated+by+'\n'+from+(select+'id','ne_type','ne_id','alarm_seq','alarm_id','alarm_code','alarm_status','event_time','log_time'+union+select+id,ne_type,ne_id,alarm_seq,alarm_id,alarm_code,alarm_status,event_time,log_time+from+alarm_log)+b
interval: 1
unit: Days
at: 00:30:00
do: TaskDBBackupCSVGetBySQL
- name: handshake to NF
status: Active
uri: /api/rest/systemManagement/v1/elementType/%s/objectType/systemState
params:
interval: 10
unit: Seconds
at:
do: TaskHandShakeToNF
- name: Export CM from NF
status: Inactive
uri: /api/rest/systemManagement/v1/elementType/%s/objectType/cm
params: ne_id=%s
interval: 1
unit: Days
at: 00:15
do: TaskExportCmFromNF
- name: Generate NRM xml file
uri:
params:
interval: 1
unit: Day
at: 00:00,06:00,12:00,18:00
do: GenCmXmlFile
- name: Task of Generate measure threshold alarm
status: Active
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
params: 10200
interval: 10
unit: Seconds
at:
do: TaskGenMeasureThresholdAlarm
- name: Task of Generate license alarm
status: Inactive
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
params: 10100 #alarm_code
interval: 1
unit: Days
at: 00:30
do: TaskGenLicenseAlarm
- name: Task of Generate NE system state alarm
status: Inactive
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
params: 10000
interval: 5
unit: Seconds
at:
do: TaskGenNeStateAlarm
- name: Task of Generate Measure Report Timeout
status: Active
uri: /api/rest/faultManagement/v1/elementType/%s/objectType/alarms
params: 10201
interval: 10
unit: Seconds
at:
do: TaskGenMeasureReportTimeoutAlarm
- name: Monitor proces list and write system log
uri: /api/rest/databaseManagement/v1/omc_db/system_log
params:
body:
interval: 10
unit: Seconds
at:
do: TaskWriteSystemLog
- name: Copy log to /opt/omc/ftp/log
uri:
params: cp -rf /usr/local/omc/database/*.csv /opt/omc/ftp/log
interval: 10
unit: Minutes
at:
do: TaskRunShellCommand
# - name: Import CM to NF
# uri: /api/rest/systemManagement/v1/elementType/udm/objectType/cm
# params: ne_id=SZ_01
# interval: 15
# unit: Seconds
# at:
# do: TaskImportCmToNF
crontab:
# - name: 每隔1分钟执行
# tab: 0 */1 * * * ? // crontab: rule like linux crontab
# do: CronHelloWorldTask // function name to call
# params:
- name: Generate PM xml file
status: Active
tab: 5,20,35,50 * * * *
do: GenPmXmlFile
uri: this is uri
params: Generating PM xml file
# - name: Import CM to NF
# tab: 0 * * * * *
# do: TaskImportCmToNF
# uri: /api/rest/systemManagement/v1/elementType/udm/objectType/cm
# params: ne_id=SZ_01

View File

@@ -0,0 +1,91 @@
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
#
# This file will automatically load configuration files provided by other
# applications, such as Drupal or Wordpress. These applications will be made
# available underneath a path with that package name, such as /drupal8.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##
# Default server configuration
#
server {
listen 1080 default_server;
listen [::]:1080 default_server;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
# fastcgi_pass unix:/run/php/php7.4-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
# listen 80;
# listen [::]:80;
#
# server_name example.com;
#
# root /var/www/example.com;
# index index.html;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}

View File

@@ -0,0 +1,72 @@
server {
listen 44443 ssl;
listen [::]:44443 ssl;
server_name 0.0.0.0;
root /usr/local/omc/htdocs/front/;
index index.html index.htm;
server_name localhost;
# SSL
ssl_certificate /usr/local/omc/etc/certs/omc-server.crt;
ssl_certificate_key /usr/local/omc/etc/certs/omc-server.key;
# CA, 自定义
ssl_client_certificate /usr/local/omc/etc/certs/omc-ca.crt;
ssl_verify_client on;
# ssl ciphers
ssl_protocols TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
# location /api/rest/securityManagement {
# proxy_pass http://127.0.0.1:55050;
# }
# location /api/rest/resourceManagement {
# proxy_pass http://127.0.0.1:55050;
# }
# location /api/rest/performanceManagement {
# proxy_pass http://127.0.0.1:55050;
# }
# location /api/rest/faultManagement {
# proxy_pass http://127.0.0.1:55050;
# }
# location /api/rest/aaaa/ {
# proxy_pass http://127.0.0.1:44040;
# }
location /api/rest/ {
proxy_pass http://127.0.0.1:33030;
}
location / {
try_files $uri $uri/ =404;
}
}
server {
listen 38888 default_server;
listen [::]:38888 default_server;
root /usr/local/omc/htdocs/front/;
index index.html index.htm;
server_name localhost;
location /omc-api/ {
proxy_pass http://127.0.0.1:33030/;
proxy_http_version 1.1;
proxy_cache_bypass $http_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
}
location / {
root /usr/local/omc/htdocs/front;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
}

View File

@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="DataFile">
<xs:complexType>
<xs:sequence>
<xs:element name="FileHeader">
<xs:complexType>
<xs:sequence>
<xs:element name="TimeStamp" type="xs:dateTime"/>
<xs:element name="TimeZone" type="xs:string"/>
<xs:element name="VendorName" type="xs:string" minOccurs="0"/>
<xs:element name="ElementType" type="xs:string" minOccurs="0"/>
<xs:element name="CmVersion" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Objects" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="ObjectType" type="xs:string"/>
<!--该字段必选-->
<xs:element name="FieldName">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="N">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="i" type="xs:integer" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="FieldValue">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="Object">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="V">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="i" type="xs:integer" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="rmUID" type="xs:string" use="required"/>
<xs:attribute name="Dn" type="xs:string"/>
<!-- //无线、核心网专业该字段必选传输、IP专业、业务系统无该字段-->
<xs:attribute name="UserLabel" type="xs:string"/>
<!-- //无线、核心网专业该字段必选传输、IP专业、业务系统无该字段-->
<xs:attribute name="PVFlag" type="xs:string" use="required"/>
<!-- //必须-->
<xs:attribute name="VMID" type="xs:string"/>
<!-- //VNF网络或VNF和PNF混合组网虚拟网元必选物理网元无该字段-->
<xs:attribute name="VNFInstanceID" type="xs:string"/>
<!-- //VNF网络或VNF和PNF混合组网虚拟网元必选物理网元无该字段-->
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1,221 @@
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- This XSLT will convert a PDML file, saved by Wireshark, into
HTML. The HTML page should look similar to Wireshark. See
https://gitlab.com/wireshark/wireshark/-/wikis/PDML for information
on how to generate such a HTML file from PDML.
For questions contact Dirk Jagdmann (doj@cubic.org).
Version: 2010-06-09
Wireshark - Network traffic analyzer
By Gerald Combs <gerald@wireshark.org>
Copyright 1998 Gerald Combs
SPDX-License-Identifier: GPL-2.0-or-later
-->
<!-- set parameters of the HTML output -->
<xsl:output method="html" encoding="UTF-8" omit-xml-declaration="no" standalone="yes" indent="yes"/>
<!-- this matches the "field" tag -->
<xsl:template match="field">
&#160;&#160;&#160; <!-- indent with 3 non-breaking spaces -->
<!-- output either the "showname" or "show" attribute -->
<xsl:choose>
<xsl:when test="string-length(@showname)>0">
<xsl:value-of select="@showname"/><br/>
</xsl:when>
<xsl:otherwise>
<!--<xsl:value-of select="@name"/>:--> <xsl:value-of select="@show"/><br/>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates/> <!-- we expect to match "field" tags -->
</xsl:template>
<!-- this matches the "packet" tag -->
<xsl:template match="packet">
<!-- declare some variables for later use -->
<xsl:variable name="frame_num" select="proto[@name='frame']/field[@name='frame.number']/@show"/>
<xsl:variable name="frame_id" select="concat('f',$frame_num)"/>
<xsl:variable name="frame_c" select="concat($frame_id,'c')"/>
<!-- the "title" bar of the frame -->
<div width="100%" id="{$frame_id}">
<a href="javascript:toggle_node('{$frame_c}')">&#8658;</a> <!-- #8658 is a "rArr" (double right arrow) character -->
Frame <xsl:value-of select="$frame_num"/>:
<xsl:for-each select="proto[@name!='geninfo']">
<xsl:value-of select="@name"/>,
</xsl:for-each>
<small><a href="javascript:hide_node('{$frame_id}')">[X]</a></small>
</div>
<!-- the frame contents are stored in a div, so we can toggle it -->
<div width="100%" id="{$frame_c}" style="display:none">
<!-- loop through all proto tags, but skip the "geninfo" one -->
<xsl:for-each select="proto[@name!='geninfo']">
<xsl:variable name="proto" select="concat($frame_id,@name,count(preceding-sibling::proto)+1)"/>
<!-- the "title" bar of the proto -->
<div width="100%" style="background-color:#e5e5e5; margin-bottom: 2px">
&#160;<a href="javascript:toggle_node('{$proto}')">&#8658;</a>&#160;<xsl:value-of select="@showname"/>
<!-- print "proto" details inside another div -->
<div width="100%" id="{$proto}" style="display:none">
<xsl:apply-templates/> <!-- we expect to match "field" tags -->
</div>
</div>
</xsl:for-each>
</div>
<!-- use the javascript function set_node_color() to set the color
of the frame title bar. Defer colorization until the full page has
been loaded. If the browser would support the XPath function
replace() we could simply set the class attribute of the title bar div,
but for now we're stuck with class names from Wireshark's colorfilters
that contain spaces and we can't handle them in CSS. -->
<script type="text/javascript">
dojo.addOnLoad(function(){
set_node_color(
'<xsl:value-of select="$frame_id"/>',
'<xsl:value-of select="proto[@name='frame']/field[@name='frame.coloring_rule.name']/@show"/>'
);
});
</script>
</xsl:template>
<xsl:template match="pdml">
Capture Filename: <b><xsl:value-of select="@capture_file"/></b>
PDML created: <b><xsl:value-of select="@time"/></b>
<tt>
<xsl:apply-templates/> <!-- we expect to match the "packet" nodes -->
</tt>
</xsl:template>
<!-- this block matches the start of the PDML file -->
<xsl:template match="/">
<html>
<head>
<title>poor man's Wireshark</title>
<script src="https://ajax.googleapis.com/ajax/libs/dojo/1.4/dojo/dojo.xd.js" type="text/javascript"></script>
<script type="text/javascript">
function set_node(node, str)
{
if(dojo.isString(node))
node = dojo.byId(node);
if(!node) return;
node.style.display = str;
}
function toggle_node(node)
{
if(dojo.isString(node))
node = dojo.byId(node);
if(!node) return;
set_node(node, (node.style.display != 'none') ? 'none' : 'block');
}
function hide_node(node)
{
set_node(node, 'none');
}
// this function was generated by colorfilters2js.pl
function set_node_color(node,colorname)
{
if(dojo.isString(node))
node = dojo.byId(node);
if(!node) return;
var fg;
var bg;
if(colorname == 'Bad TCP') {
bg='#000000';
fg='#ff5f5f';
}
if(colorname == 'HSRP State Change') {
bg='#000000';
fg='#fff600';
}
if(colorname == 'Spanning Tree Topology Change') {
bg='#000000';
fg='#fff600';
}
if(colorname == 'OSPF State Change') {
bg='#000000';
fg='#fff600';
}
if(colorname == 'ICMP errors') {
bg='#000000';
fg='#00ff0e';
}
if(colorname == 'ARP') {
bg='#d6e8ff';
fg='#000000';
}
if(colorname == 'ICMP') {
bg='#c2c2ff';
fg='#000000';
}
if(colorname == 'TCP RST') {
bg='#900000';
fg='#fff680';
}
if(colorname == 'TTL low or unexpected') {
bg='#900000';
fg='#ffffff';
}
if(colorname == 'Checksum Errors') {
bg='#000000';
fg='#ff5f5f';
}
if(colorname == 'SMB') {
bg='#fffa99';
fg='#000000';
}
if(colorname == 'HTTP') {
bg='#8dff7f';
fg='#000000';
}
if(colorname == 'IPX') {
bg='#ffe3e5';
fg='#000000';
}
if(colorname == 'DCERPC') {
bg='#c797ff';
fg='#000000';
}
if(colorname == 'Routing') {
bg='#fff3d6';
fg='#000000';
}
if(colorname == 'TCP SYN/FIN') {
bg='#a0a0a0';
fg='#000000';
}
if(colorname == 'TCP') {
bg='#e7e6ff';
fg='#000000';
}
if(colorname == 'UDP') {
bg='#70e0ff';
fg='#000000';
}
if(colorname == 'Broadcast') {
bg='#ffffff';
fg='#808080';
}
if(fg.length > 0)
node.style.color = fg;
if(bg.length > 0)
node.style.background = bg;
}
</script>
</head>
<body>
<xsl:apply-templates/> <!-- we expect to match the "pdml" node -->
</body>
</html>
</xsl:template>
</xsl:stylesheet>

View File

@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="PmFile">
<xs:complexType>
<xs:sequence>
<xs:element name="FileHeader">
<xs:complexType>
<xs:sequence>
<xs:element name="TimeStamp" type="xs:dateTime" />
<xs:element name="TimeZone" type="xs:string" />
<xs:element name="Period" type="xs:integer" />
<xs:element name="VendorName" type="xs:string" />
<xs:element name="ElementType" type="xs:string" />
<xs:element name="PmVersion" type="xs:string" />
<xs:element name="StartTime" type="xs:dateTime" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Measurements" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="ObjectType" type="xs:string" />
<xs:element name="PmName">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="N">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="i" type="xs:integer" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PmData">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="Object">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="V">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="i" type="xs:integer" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="CV">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="SN" type="xs:string" />
<xs:element name="SV" type="xs:string" />
</xs:sequence>
<xs:attribute name="i" type="xs:integer"
use="required" />
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attribute name="rmUID" type="xs:string" use="required" />
<xs:attribute name="Dn" type="xs:string" use="required" />
<xs:attribute name="UserLabel" type="xs:string" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1,68 @@
"AMF","AMF.A.01","{""cn"":""AMF移动性注册更新请求次数"",""en"":""AMF.AttMobiReg""}","AMF移动性注册更新请求次数","AMF.AttMobiReg"
"AMF","AMF.A.02","{""cn"":""AMF移动性注册更新成功次数"",""en"":""AMF.SuccMobiReg""}","AMF移动性注册更新成功次数","AMF.SuccMobiReg"
"AMF","AMF.A.03","{""cn"":""AMF移动性注册更新失败次数"",""en"":""AMF.FailedMobiReg""}","AMF移动性注册更新失败次数","AMF.FailedMobiReg"
"AMF","AMF.A.04","{""cn"":""AMF紧急注册请求次数"",""en"":""AMF.AttEmergReg""}","AMF紧急注册请求次数","AMF.AttEmergReg"
"AMF","AMF.A.05","{""cn"":""AMF紧急注册成功次数"",""en"":""AMF.SuccEmergReg""}","AMF紧急注册成功次数","AMF.SuccEmergReg"
"AMF","AMF.A.06","{""cn"":""AMF紧急注册失败次数"",""en"":""AMF.FailedEmergReg""}","AMF紧急注册失败次数","AMF.FailedEmergReg"
"AMF","AMF.A.07","{""cn"":""UE发起的去注册请求次数"",""en"":""AMF.AttUeDereg""}","UE发起的去注册请求次数","AMF.AttUeDereg"
"AMF","AMF.A.08","{""cn"":""UE发起的去注册成功次数"",""en"":""AMF.SuccUeDereg""}","UE发起的去注册成功次数","AMF.SuccUeDereg"
"AMF","AMF.A.09","{""cn"":""AMF发起的去注册请求次数"",""en"":""AMF.AttAmfDereg""}","AMF发起的去注册请求次数","AMF.AttAmfDereg"
"AMF","AMF.A.10","{""cn"":""AMF发起的去注册成功次数"",""en"":""AMF.SuccAmfDereg""}","AMF发起的去注册成功次数","AMF.SuccAmfDereg"
"AMF","AMF.A.11","{""cn"":""UDM发起的去注册请求次数"",""en"":""AMF.AttUdmDereg""}","UDM发起的去注册请求次数","AMF.AttUdmDereg"
"AMF","AMF.A.12","{""cn"":""UDM发起的去注册成功次数"",""en"":""AMF.SuccUdmDereg""}","UDM发起的去注册成功次数","AMF.SuccUdmDereg"
"AMF","AMF.A.13","{""cn"":""AMF寻呼失败次数"",""en"":""AMF.PagFail""}","AMF寻呼失败次数","AMF.PagFail"
"AMF","AMF.A.14","{""cn"":""AMF隐式去注册次数"",""en"":""AMF.ImplicitDereg""}","AMF隐式去注册次数","AMF.ImplicitDereg"
"SMF","SMF.A.01","{""cn"":""PDU会话接受次数"",""en"":""SMF.PduSessAcpt""}","PDU会话接受次数","SMF.PduSessAcpt"
"SMF","SMF.A.02","{""cn"":""基站Pdu资源创建成功次数"",""en"":""SM.PduResSetupSucc""}","基站Pdu资源创建成功次数","SM.PduResSetupSucc"
"SMF","SMF.A.03","{""cn"":""查询用户SM数据失败次数"",""en"":""SM.RetrieveSmDataFail""}","查询用户SM数据失败次数","SM.RetrieveSmDataFail"
"SMF","SMF.A.04","{""cn"":""PFCP会话建立失败次数"",""en"":""SM.PfcpSessEstFail""}","PFCP会话建立失败次数","SM.PfcpSessEstFail"
"SMF","SMF.A.05","{""cn"":""基站Pdu资源创建失败次数"",""en"":""SM.PduResSetupFail""}","基站Pdu资源创建失败次数","SM.PduResSetupFail"
"SMF","SMF.A.06","{""cn"":""PFCP会话修改失败次数"",""en"":""SM.PfcpSessMdfyFail""}","PFCP会话修改失败次数","SM.PfcpSessMdfyFail"
"SMF","SMF.A.07","{""cn"":""PDU会话拒绝次数"",""en"":""SM.PduSessRejt""}","PDU会话拒绝次数","SM.PduSessRejt"
"SMF","SMF.A.08","{""cn"":""PDU会话释放指示次数"",""en"":""SM.PduSessRelCmd""}","PDU会话释放指示次数","SM.PduSessRelCmd"
"NSSF","NSSF.A.02","{""cn"":""可用AMF注册次数"",""en"":""NSSF.SuccAvailAMFPut""}","可用AMF注册成功次数","NSSF.SuccAvailAMFPut"
"NSSF","NSSF.A.03","{""cn"":""可用AMF注册更新成功次数"",""en"":""NSSF.AvailAMFPut""}","可用AMF注册次数","NSSF.AvailAMFPut"
"NSSF","NSSF.A.04","{""cn"":""可用AMF注册更新次数"",""en"":""NSSF.SuccAvailAMFPatch""}","可用AMF注册更新成功次数","NSSF.SuccAvailAMFPatch"
"NSSF","NSSF.A.01","{""cn"":""可用AMF注册成功次数"",""en"":""NSSF.AvailAMFPatch""}","可用AMF注册更新次数","NSSF.AvailAMFPatch"
"NSSF","NSSF.A.05","{""cn"":""可用AMF去注册成功次数"",""en"":""NSSF.SuccAvailAMFDelete""}","可用AMF去注册成功次数","NSSF.SuccAvailAMFDelete"
"NSSF","NSSF.A.06","{""cn"":""可用AMF去注册次数"",""en"":""NSSF.AvailAMFDelete""}","可用AMF去注册次数","NSSF.AvailAMFDelete"
"NSSF","NSSF.A.07","{""cn"":""网元订阅成功次数"",""en"":""NSSF.SuccAvailSubscription""}","网元订阅成功次数","NSSF.SuccAvailSubscription"
"NSSF","NSSF.A.08","{""cn"":""网元订阅次数"",""en"":""NSSF.AvailSubscription""}","网元订阅次数","NSSF.AvailSubscription"
"NSSF","NSSF.A.09","{""cn"":""网元去订阅成功次数"",""en"":""NSSF.SuccAvailUnsubscription""}","网元去订阅成功次数","NSSF.SuccAvailUnsubscription"
"NSSF","NSSF.A.10","{""cn"":""网元去订阅次数"",""en"":""NSSF.AvailUnsubscription""}","网元去订阅次数","NSSF.AvailUnsubscription"
"NSSF","NSSF.A.11","{""cn"":""向NRF注册成功次数"",""en"":""NSSF.SuccNRFReg""}","向NRF注册成功次数","NSSF.SuccNRFReg"
"NSSF","NSSF.A.12","{""cn"":""向NRF注册次数"",""en"":""NSSF.NRFReg""}","向NRF注册次数","NSSF.NRFReg"
"NSSF","NSSF.A.13","{""cn"":""向NRF发送心跳次数"",""en"":""NSSF.NRFHeartbeat""}","向NRF发送心跳次数","NSSF.NRFHeartbeat"
"NSSF","NSSF.A.14","{""cn"":""当前注册AMF个数"",""en"":""NSSF.CurrentAMFCount""}","当前注册AMF个数","NSSF.CurrentAMFCount"
"NSSF","NSSF.A.15","{""cn"":""当前订阅网元个数"",""en"":""NSSF.CurrentSubscriperCount""}","当前订阅网元个数","NSSF.CurrentSubscriperCount"
"MME","MME.A.01","{""cn"":""MME附着请求次数"",""en"":""EpsAttachAtt""}","MME附着请求次数","EpsAttachAtt"
"MME","MME.A.02","{""cn"":""MME附着成功次数"",""en"":""EpsAttachSucc""}","MME附着成功次数","EpsAttachSucc"
"MME","MME.A.03","{""cn"":""MME附着失败次数"",""en"":""EpsAttachFail""}","MME附着失败次数","EpsAttachFail"
"MME","MME.A.04","{""cn"":""MME组合附着请求次数"",""en"":""CombAttachAtt""}","MME组合附着请求次数","CombAttachAtt"
"MME","MME.A.05","{""cn"":""MME组合附着成功次数"",""en"":""CombAttachSucc""}","MME组合附着成功次数","CombAttachSucc"
"MME","MME.A.06","{""cn"":""MME组合附着失败次数"",""en"":""CombAttachFail""}","MME组合附着失败次数","CombAttachFail"
"MME","MME.A.07","{""cn"":""MME紧急附着请求次数"",""en"":""EmergAttachAtt""}","MME紧急附着请求次数","EmergAttachAtt"
"MME","MME.A.08","{""cn"":""MME紧急附着成功次数"",""en"":""EmergAttachSucc""}","MME紧急附着成功次数","EmergAttachSucc"
"MME","MME.A.09","{""cn"":""MME紧急附着失败次数"",""en"":""EmergAttachFail""}","MME紧急附着失败次数","EmergAttachFail"
"MME","MME.A.10","{""cn"":""UE发起的分离请求次数"",""en"":""EpsDetachUeAtt""}","UE发起的分离请求次数","EpsDetachUeAtt"
"MME","MME.A.11","{""cn"":""UE发起的分离请求成功次数"",""en"":""EpsDetachUeSucc""}","UE发起的分离请求成功次数","EpsDetachUeSucc"
"MME","MME.A.12","{""cn"":""MME发起的分离请求次数"",""en"":""EpsDetachMMEAtt""}","MME发起的分离请求次数","EpsDetachMMEAtt"
"MME","MME.A.13","{""cn"":""MME发起的分离请求成功次数"",""en"":""EpsDetachMMESucc""}","MME发起的分离请求成功次数","EpsDetachMMESucc"
"MME","MME.A.14","{""cn"":""伴随SGW内切换的TAU请求次数"",""en"":""TauIntraSgwAtt""}","伴随SGW内切换的TAU请求次数","TauIntraSgwAtt"
"MME","MME.A.15","{""cn"":""伴随SGW内切换的TAU成功请求次数"",""en"":""TauIntraSgwSucc""}","伴随SGW内切换的TAU成功请求次数","TauIntraSgwSucc"
"MME","MME.A.16","{""cn"":""伴随SGW内切换的TAU失败请求次数"",""en"":""TauIntraSgwFail""}","伴随SGW内切换的TAU失败请求次数","TauIntraSgwFail"
"MME","MME.A.17","{""cn"":""MME寻呼次数"",""en"":""PagingEpsAtt""}","MME寻呼次数","PagingEpsAtt"
"MME","MME.A.18","{""cn"":""MME寻呼成功次数"",""en"":""PagingEpsSucc""}","MME寻呼成功次数","PagingEpsSucc"
"MME","MME.A.19","{""cn"":""MME寻呼失败次数"",""en"":""PagingEpsFail""}","MME寻呼失败次数","PagingEpsFail"
"MME","MME.A.20","{""cn"":""MME隐式分离请求次数"",""en"":""EpsImplicitDetach""}","MME隐式分离请求次数","EpsImplicitDetach"
"MME","MME.A.21","{""cn"":""MME激活专用承载请求次数"",""en"":""ActDedicatedEpsBearerAtt""}","MME激活专用承载请求次数","ActDedicatedEpsBearerAtt"
"MME","MME.A.22","{""cn"":""MME激活专用承载请求成功次数"",""en"":""ActDedicatedEpsBearerSucc""}","MME激活专用承载请求成功次数","ActDedicatedEpsBearerSucc"
"MME","MME.A.23","{""cn"":""MME激活专用承载请求失败次数"",""en"":""ActDedicatedEpsBearerFail""}","MME激活专用承载请求失败次数","ActDedicatedEpsBearerFail"
"MME","MME.A.24","{""cn"":""MME去激活专用承载请求次数"",""en"":""DeactEpsDedicatedBearerAtt""}","MME去激活专用承载请求次数","DeactEpsDedicatedBearerAtt"
"MME","MME.A.25","{""cn"":""MME去激活专用承载请求成功次数"",""en"":""DeactEpsDedicatedBearerSucc""}","MME去激活专用承载请求成功次数","DeactEpsDedicatedBearerSucc"
"MME","MME.A.26","{""cn"":""MME修改专用承载请求次数"",""en"":""ModEpsBearerAtt""}","MME修改专用承载请求次数","ModEpsBearerAtt"
"MME","MME.A.27","{""cn"":""MME修改专用承载请求成功次数"",""en"":""ModEpsBearerSucc""}","MME修改专用承载请求成功次数","ModEpsBearerSucc"
"MME","MME.A.28","{""cn"":""MME修改专用承载请求失败次数"",""en"":""ModEpsBearerFail""}","MME修改专用承载请求失败次数","ModEpsBearerFail"
"MME","MME.A.29","{""cn"":""MME服务请求次数"",""en"":""EpsServiceReqAtt""}","MME服务请求次数","EpsServiceReqAtt"
"MME","MME.A.30","{""cn"":""MME服务请求成功次数"",""en"":""EpsServiceReqSucc""}","MME服务请求成功次数","EpsServiceReqSucc"
"MME","MME.A.31","{""cn"":""MME服务请求失败次数"",""en"":""EpsServiceReqFail""}","MME服务请求失败次数","EpsServiceReqFail"
1 AMF AMF.A.01 {"cn":"AMF移动性注册更新请求次数","en":"AMF.AttMobiReg"} AMF移动性注册更新请求次数 AMF.AttMobiReg
2 AMF AMF.A.02 {"cn":"AMF移动性注册更新成功次数","en":"AMF.SuccMobiReg"} AMF移动性注册更新成功次数 AMF.SuccMobiReg
3 AMF AMF.A.03 {"cn":"AMF移动性注册更新失败次数","en":"AMF.FailedMobiReg"} AMF移动性注册更新失败次数 AMF.FailedMobiReg
4 AMF AMF.A.04 {"cn":"AMF紧急注册请求次数","en":"AMF.AttEmergReg"} AMF紧急注册请求次数 AMF.AttEmergReg
5 AMF AMF.A.05 {"cn":"AMF紧急注册成功次数","en":"AMF.SuccEmergReg"} AMF紧急注册成功次数 AMF.SuccEmergReg
6 AMF AMF.A.06 {"cn":"AMF紧急注册失败次数","en":"AMF.FailedEmergReg"} AMF紧急注册失败次数 AMF.FailedEmergReg
7 AMF AMF.A.07 {"cn":"UE发起的去注册请求次数","en":"AMF.AttUeDereg"} UE发起的去注册请求次数 AMF.AttUeDereg
8 AMF AMF.A.08 {"cn":"UE发起的去注册成功次数","en":"AMF.SuccUeDereg"} UE发起的去注册成功次数 AMF.SuccUeDereg
9 AMF AMF.A.09 {"cn":"AMF发起的去注册请求次数","en":"AMF.AttAmfDereg"} AMF发起的去注册请求次数 AMF.AttAmfDereg
10 AMF AMF.A.10 {"cn":"AMF发起的去注册成功次数","en":"AMF.SuccAmfDereg"} AMF发起的去注册成功次数 AMF.SuccAmfDereg
11 AMF AMF.A.11 {"cn":"UDM发起的去注册请求次数","en":"AMF.AttUdmDereg"} UDM发起的去注册请求次数 AMF.AttUdmDereg
12 AMF AMF.A.12 {"cn":"UDM发起的去注册成功次数","en":"AMF.SuccUdmDereg"} UDM发起的去注册成功次数 AMF.SuccUdmDereg
13 AMF AMF.A.13 {"cn":"AMF寻呼失败次数","en":"AMF.PagFail"} AMF寻呼失败次数 AMF.PagFail
14 AMF AMF.A.14 {"cn":"AMF隐式去注册次数","en":"AMF.ImplicitDereg"} AMF隐式去注册次数 AMF.ImplicitDereg
15 SMF SMF.A.01 {"cn":"PDU会话接受次数","en":"SMF.PduSessAcpt"} PDU会话接受次数 SMF.PduSessAcpt
16 SMF SMF.A.02 {"cn":"基站Pdu资源创建成功次数","en":"SM.PduResSetupSucc"} 基站Pdu资源创建成功次数 SM.PduResSetupSucc
17 SMF SMF.A.03 {"cn":"查询用户SM数据失败次数","en":"SM.RetrieveSmDataFail"} 查询用户SM数据失败次数 SM.RetrieveSmDataFail
18 SMF SMF.A.04 {"cn":"PFCP会话建立失败次数","en":"SM.PfcpSessEstFail"} PFCP会话建立失败次数 SM.PfcpSessEstFail
19 SMF SMF.A.05 {"cn":"基站Pdu资源创建失败次数","en":"SM.PduResSetupFail"} 基站Pdu资源创建失败次数 SM.PduResSetupFail
20 SMF SMF.A.06 {"cn":"PFCP会话修改失败次数","en":"SM.PfcpSessMdfyFail"} PFCP会话修改失败次数 SM.PfcpSessMdfyFail
21 SMF SMF.A.07 {"cn":"PDU会话拒绝次数","en":"SM.PduSessRejt"} PDU会话拒绝次数 SM.PduSessRejt
22 SMF SMF.A.08 {"cn":"PDU会话释放指示次数","en":"SM.PduSessRelCmd"} PDU会话释放指示次数 SM.PduSessRelCmd
23 NSSF NSSF.A.02 {"cn":"可用AMF注册次数","en":"NSSF.SuccAvailAMFPut"} 可用AMF注册成功次数 NSSF.SuccAvailAMFPut
24 NSSF NSSF.A.03 {"cn":"可用AMF注册更新成功次数","en":"NSSF.AvailAMFPut"} 可用AMF注册次数 NSSF.AvailAMFPut
25 NSSF NSSF.A.04 {"cn":"可用AMF注册更新次数","en":"NSSF.SuccAvailAMFPatch"} 可用AMF注册更新成功次数 NSSF.SuccAvailAMFPatch
26 NSSF NSSF.A.01 {"cn":"可用AMF注册成功次数","en":"NSSF.AvailAMFPatch"} 可用AMF注册更新次数 NSSF.AvailAMFPatch
27 NSSF NSSF.A.05 {"cn":"可用AMF去注册成功次数","en":"NSSF.SuccAvailAMFDelete"} 可用AMF去注册成功次数 NSSF.SuccAvailAMFDelete
28 NSSF NSSF.A.06 {"cn":"可用AMF去注册次数","en":"NSSF.AvailAMFDelete"} 可用AMF去注册次数 NSSF.AvailAMFDelete
29 NSSF NSSF.A.07 {"cn":"网元订阅成功次数","en":"NSSF.SuccAvailSubscription"} 网元订阅成功次数 NSSF.SuccAvailSubscription
30 NSSF NSSF.A.08 {"cn":"网元订阅次数","en":"NSSF.AvailSubscription"} 网元订阅次数 NSSF.AvailSubscription
31 NSSF NSSF.A.09 {"cn":"网元去订阅成功次数","en":"NSSF.SuccAvailUnsubscription"} 网元去订阅成功次数 NSSF.SuccAvailUnsubscription
32 NSSF NSSF.A.10 {"cn":"网元去订阅次数","en":"NSSF.AvailUnsubscription"} 网元去订阅次数 NSSF.AvailUnsubscription
33 NSSF NSSF.A.11 {"cn":"向NRF注册成功次数","en":"NSSF.SuccNRFReg"} 向NRF注册成功次数 NSSF.SuccNRFReg
34 NSSF NSSF.A.12 {"cn":"向NRF注册次数","en":"NSSF.NRFReg"} 向NRF注册次数 NSSF.NRFReg
35 NSSF NSSF.A.13 {"cn":"向NRF发送心跳次数","en":"NSSF.NRFHeartbeat"} 向NRF发送心跳次数 NSSF.NRFHeartbeat
36 NSSF NSSF.A.14 {"cn":"当前注册AMF个数","en":"NSSF.CurrentAMFCount"} 当前注册AMF个数 NSSF.CurrentAMFCount
37 NSSF NSSF.A.15 {"cn":"当前订阅网元个数","en":"NSSF.CurrentSubscriperCount"} 当前订阅网元个数 NSSF.CurrentSubscriperCount
38 MME MME.A.01 {"cn":"MME附着请求次数","en":"EpsAttachAtt"} MME附着请求次数 EpsAttachAtt
39 MME MME.A.02 {"cn":"MME附着成功次数","en":"EpsAttachSucc"} MME附着成功次数 EpsAttachSucc
40 MME MME.A.03 {"cn":"MME附着失败次数","en":"EpsAttachFail"} MME附着失败次数 EpsAttachFail
41 MME MME.A.04 {"cn":"MME组合附着请求次数","en":"CombAttachAtt"} MME组合附着请求次数 CombAttachAtt
42 MME MME.A.05 {"cn":"MME组合附着成功次数","en":"CombAttachSucc"} MME组合附着成功次数 CombAttachSucc
43 MME MME.A.06 {"cn":"MME组合附着失败次数","en":"CombAttachFail"} MME组合附着失败次数 CombAttachFail
44 MME MME.A.07 {"cn":"MME紧急附着请求次数","en":"EmergAttachAtt"} MME紧急附着请求次数 EmergAttachAtt
45 MME MME.A.08 {"cn":"MME紧急附着成功次数","en":"EmergAttachSucc"} MME紧急附着成功次数 EmergAttachSucc
46 MME MME.A.09 {"cn":"MME紧急附着失败次数","en":"EmergAttachFail"} MME紧急附着失败次数 EmergAttachFail
47 MME MME.A.10 {"cn":"UE发起的分离请求次数","en":"EpsDetachUeAtt"} UE发起的分离请求次数 EpsDetachUeAtt
48 MME MME.A.11 {"cn":"UE发起的分离请求成功次数","en":"EpsDetachUeSucc"} UE发起的分离请求成功次数 EpsDetachUeSucc
49 MME MME.A.12 {"cn":"MME发起的分离请求次数","en":"EpsDetachMMEAtt"} MME发起的分离请求次数 EpsDetachMMEAtt
50 MME MME.A.13 {"cn":"MME发起的分离请求成功次数","en":"EpsDetachMMESucc"} MME发起的分离请求成功次数 EpsDetachMMESucc
51 MME MME.A.14 {"cn":"伴随SGW内切换的TAU请求次数","en":"TauIntraSgwAtt"} 伴随SGW内切换的TAU请求次数 TauIntraSgwAtt
52 MME MME.A.15 {"cn":"伴随SGW内切换的TAU成功请求次数","en":"TauIntraSgwSucc"} 伴随SGW内切换的TAU成功请求次数 TauIntraSgwSucc
53 MME MME.A.16 {"cn":"伴随SGW内切换的TAU失败请求次数","en":"TauIntraSgwFail"} 伴随SGW内切换的TAU失败请求次数 TauIntraSgwFail
54 MME MME.A.17 {"cn":"MME寻呼次数","en":"PagingEpsAtt"} MME寻呼次数 PagingEpsAtt
55 MME MME.A.18 {"cn":"MME寻呼成功次数","en":"PagingEpsSucc"} MME寻呼成功次数 PagingEpsSucc
56 MME MME.A.19 {"cn":"MME寻呼失败次数","en":"PagingEpsFail"} MME寻呼失败次数 PagingEpsFail
57 MME MME.A.20 {"cn":"MME隐式分离请求次数","en":"EpsImplicitDetach"} MME隐式分离请求次数 EpsImplicitDetach
58 MME MME.A.21 {"cn":"MME激活专用承载请求次数","en":"ActDedicatedEpsBearerAtt"} MME激活专用承载请求次数 ActDedicatedEpsBearerAtt
59 MME MME.A.22 {"cn":"MME激活专用承载请求成功次数","en":"ActDedicatedEpsBearerSucc"} MME激活专用承载请求成功次数 ActDedicatedEpsBearerSucc
60 MME MME.A.23 {"cn":"MME激活专用承载请求失败次数","en":"ActDedicatedEpsBearerFail"} MME激活专用承载请求失败次数 ActDedicatedEpsBearerFail
61 MME MME.A.24 {"cn":"MME去激活专用承载请求次数","en":"DeactEpsDedicatedBearerAtt"} MME去激活专用承载请求次数 DeactEpsDedicatedBearerAtt
62 MME MME.A.25 {"cn":"MME去激活专用承载请求成功次数","en":"DeactEpsDedicatedBearerSucc"} MME去激活专用承载请求成功次数 DeactEpsDedicatedBearerSucc
63 MME MME.A.26 {"cn":"MME修改专用承载请求次数","en":"ModEpsBearerAtt"} MME修改专用承载请求次数 ModEpsBearerAtt
64 MME MME.A.27 {"cn":"MME修改专用承载请求成功次数","en":"ModEpsBearerSucc"} MME修改专用承载请求成功次数 ModEpsBearerSucc
65 MME MME.A.28 {"cn":"MME修改专用承载请求失败次数","en":"ModEpsBearerFail"} MME修改专用承载请求失败次数 ModEpsBearerFail
66 MME MME.A.29 {"cn":"MME服务请求次数","en":"EpsServiceReqAtt"} MME服务请求次数 EpsServiceReqAtt
67 MME MME.A.30 {"cn":"MME服务请求成功次数","en":"EpsServiceReqSucc"} MME服务请求成功次数 EpsServiceReqSucc
68 MME MME.A.31 {"cn":"MME服务请求失败次数","en":"EpsServiceReqFail"} MME服务请求失败次数 EpsServiceReqFail

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,18 @@
config_id,config_name,config_key,config_value,config_type,create_by,create_time,update_by,update_time,remark
1,config.sys.user.initPassword,sys.user.initPassword,Abcd@1234..,Y,supervisor,1.70E+12,,0,config.sys.user.initPasswordRemark
2,config.sys.account.captchaEnabled,sys.account.captchaEnabled,false,Y,supervisor,1.70E+12,,0,config.sys.account.captchaEnabledRemark
3,config.sys.account.registerUser,sys.account.registerUser,false,Y,supervisor,1.70E+12,,0,config.sys.account.registerUserRemark
4,config.sys.user.maxRetryCount,sys.user.maxRetryCount,5,Y,supervisor,1.70E+12,,0,config.sys.user.maxRetryCountRemark
5,config.sys.user.lockTime,sys.user.lockTime,10,Y,supervisor,1.70E+12,,0,config.sys.user.lockTimeRemark
6,config.sys.officialUrl,sys.officialUrl,#,Y,supervisor,1.70E+12,,0,config.sys.officialUrlRemark
7,config.sys.helpDoc,sys.helpDoc,/static/helpDoc/{language}_doc.pdf,Y,supervisor,1.70E+12,,0,config.sys.helpDocRemark
8,sys.account.captchaType,sys.account.captchaType,math,Y,supervisor,1.70541E+12,,0,sys.account.captchaTypeRemark
10,config.monitor.sysResource.storeDays,monitor.sysResource.storeDays,30,Y,supervisor,1.70E+12,,0,config.monitor.sysResource.storeDaysRemark
102,config.sys.logo.type,sys.logo.type,icon,Y,supervisor,1.70E+12,,0,config.sys.logo.typeRemark
103,config.sys.logo.filePathIcon,sys.logo.filePathIcon,/static/logo/{language}_icon.png,Y,supervisor,1.70E+12,,0,config.sys.logo.filePathIconRemark
104,config.sys.logo.filePathBrand,sys.logo.filePathBrand,/static/logo/{language}_brand.png,Y,supervisor,1.70E+12,,0,config.sys.logo.filePathBrandRemark
105,config.sys.loginBackground,sys.loginBackground,#,Y,supervisor,1.70E+12,,0,config.sys.loginBackgroundRemark
106,config.sys.title,sys.title,config.sys.titleValue,Y,supervisor,1.70E+12,,0,config.sys.titleRemark
107,config.sys.copyright,sys.copyright,config.sys.copyrightValue,Y,supervisor,1.70E+12,,0,config.sys.copyrightRemark
108,config.sys.i18nOpen,sys.i18n.open,true,Y,supervisor,1.70E+12,,0,config.sys.i18nOpenRemark
109,config.sys.i18nDefault,sys.i18n.default,en_US,Y,supervisor,1.70E+12,,0,config.sys.i18nDefaultRemark
1 config_id config_name config_key config_value config_type create_by create_time update_by update_time remark
2 1 config.sys.user.initPassword sys.user.initPassword Abcd@1234.. Y supervisor 1.70E+12 0 config.sys.user.initPasswordRemark
3 2 config.sys.account.captchaEnabled sys.account.captchaEnabled false Y supervisor 1.70E+12 0 config.sys.account.captchaEnabledRemark
4 3 config.sys.account.registerUser sys.account.registerUser false Y supervisor 1.70E+12 0 config.sys.account.registerUserRemark
5 4 config.sys.user.maxRetryCount sys.user.maxRetryCount 5 Y supervisor 1.70E+12 0 config.sys.user.maxRetryCountRemark
6 5 config.sys.user.lockTime sys.user.lockTime 10 Y supervisor 1.70E+12 0 config.sys.user.lockTimeRemark
7 6 config.sys.officialUrl sys.officialUrl # Y supervisor 1.70E+12 0 config.sys.officialUrlRemark
8 7 config.sys.helpDoc sys.helpDoc /static/helpDoc/{language}_doc.pdf Y supervisor 1.70E+12 0 config.sys.helpDocRemark
9 8 sys.account.captchaType sys.account.captchaType math Y supervisor 1.70541E+12 0 sys.account.captchaTypeRemark
10 10 config.monitor.sysResource.storeDays monitor.sysResource.storeDays 30 Y supervisor 1.70E+12 0 config.monitor.sysResource.storeDaysRemark
11 102 config.sys.logo.type sys.logo.type icon Y supervisor 1.70E+12 0 config.sys.logo.typeRemark
12 103 config.sys.logo.filePathIcon sys.logo.filePathIcon /static/logo/{language}_icon.png Y supervisor 1.70E+12 0 config.sys.logo.filePathIconRemark
13 104 config.sys.logo.filePathBrand sys.logo.filePathBrand /static/logo/{language}_brand.png Y supervisor 1.70E+12 0 config.sys.logo.filePathBrandRemark
14 105 config.sys.loginBackground sys.loginBackground # Y supervisor 1.70E+12 0 config.sys.loginBackgroundRemark
15 106 config.sys.title sys.title config.sys.titleValue Y supervisor 1.70E+12 0 config.sys.titleRemark
16 107 config.sys.copyright sys.copyright config.sys.copyrightValue Y supervisor 1.70E+12 0 config.sys.copyrightRemark
17 108 config.sys.i18nOpen sys.i18n.open true Y supervisor 1.70E+12 0 config.sys.i18nOpenRemark
18 109 config.sys.i18nDefault sys.i18n.default en_US Y supervisor 1.70E+12 0 config.sys.i18nDefaultRemark

View File

@@ -0,0 +1,3 @@
dept_id,parent_id,ancestors,dept_name,order_num,leader,phone,email,status,del_flag,create_by,create_time,update_by,update_time
100,0,0,dept.root,0,supervisor,,,1,0,supervisor,1.69935E+12,,0
101,100,"0,100",dept.root.item1,1,supervisor,,,1,0,supervisor,1.69935E+12,,0
1 dept_id parent_id ancestors dept_name order_num leader phone email status del_flag create_by create_time update_by update_time
2 100 0 0 dept.root 0 supervisor 1 0 supervisor 1.69935E+12 0
3 101 100 0,100 dept.root.item1 1 supervisor 1 0 supervisor 1.69935E+12 0

View File

@@ -0,0 +1,79 @@
dict_code,dict_sort,dict_label,dict_value,dict_type,tag_class,tag_type,status,create_by,create_time,update_by,update_time,remark
1,1,dictData.sex.un,0,sys_user_sex,,,1,supervisor,1.69935E+12,,0,
2,2,dictData.sex.male,1,sys_user_sex,,,1,supervisor,1.69935E+12,,0,
3,3,dictData.sex.female,2,sys_user_sex,,,1,supervisor,1.69935E+12,,0,
4,1,dictData.show,1,sys_show_hide,,success,1,supervisor,1.69935E+12,,0,
5,2,dictData.hide,0,sys_show_hide,,error,1,supervisor,1.69935E+12,,0,
6,1,dictData.normal,1,sys_normal_disable,,success,1,supervisor,1.69935E+12,,0,
7,2,dictData.disable,0,sys_normal_disable,,error,1,supervisor,1.69935E+12,,0,
8,1,dictData.yes,Y,sys_yes_no,,success,1,supervisor,1.69935E+12,,0,
9,2,dictData.no,N,sys_yes_no,,error,1,supervisor,1.69935E+12,,0,
10,1,dictData.success,1,sys_common_status,,success,1,supervisor,1.69935E+12,,0,
11,2,dictData.fail,0,sys_common_status,,error,1,supervisor,1.69935E+12,,0,
12,1,dictData.jobStatus.normal,1,sys_job_status,,,1,supervisor,1.69935E+12,,0,
13,2,dictData.jobStatus.pause,0,sys_job_status,,,1,supervisor,1.69935E+12,,0,
14,1,dictData.jobGroup.Default,DEFAULT,sys_job_group,,,1,supervisor,1.69935E+12,,0,
15,2,dictData.jobGroup.System,SYSTEM,sys_job_group,,,1,supervisor,1.69935E+12,,0,
16,1,dictData.operType.other,0,sys_oper_type,,processing,1,supervisor,1.69935E+12,,0,
17,2,dictData.operType.add,1,sys_oper_type,,processing,1,supervisor,1.69935E+12,,0,
18,3,dictData.operType.edit,2,sys_oper_type,,processing,1,supervisor,1.69935E+12,,0,
19,4,dictData.operType.delete,3,sys_oper_type,,error,1,supervisor,1.69935E+12,,0,
20,5,dictData.operType.auth,4,sys_oper_type,,success,1,supervisor,1.69935E+12,,0,
21,6,dictData.operType.export,5,sys_oper_type,,warning,1,supervisor,1.69935E+12,,0,
22,7,dictData.operType.import,6,sys_oper_type,,warning,1,supervisor,1.69935E+12,,0,
23,8,dictData.operType.forced quit,7,sys_oper_type,,error,1,supervisor,1.69935E+12,,0,
24,9,dictData.operType.clear,8,sys_oper_type,,error,1,supervisor,1.69935E+12,,0,
25,1,dictData.trace.interface,Interface,trace_type,,,1,supervisor,1.69935E+12,,0,
26,2,dictData.trace.device,Device,trace_type,,,1,supervisor,1.69935E+12,,0,
27,3,dictData.trace.user,UE,trace_type,,,1,supervisor,1.69935E+12,,0,
28,1,dictData.logType.download,DOWNLOAD,operation_log_type,,pink,1,supervisor,1.69935E+12,,0,
29,2,dictData.logType.activation,Activation,operation_log_type,,blue ,1,supervisor,1.69935E+12,,0,
30,3,dictData.logType.add,ADD,operation_log_type,,cyan,1,supervisor,1.69935E+12,,0,
31,4,dictData.logType.other,AUTO,operation_log_type,,gold,1,supervisor,1.69935E+12,,0,
32,5,dictData.logType.back,BACK,operation_log_type,,blue ,1,supervisor,1.69935E+12,,0,
33,6,dictData.logType.delete,DELETE,operation_log_type,,red,1,supervisor,1.69935E+12,,0,
34,7,dictData.logType.distribute,Distribute,operation_log_type,,yellow,1,supervisor,1.69935E+12,,0,
35,8,dictData.logType.export,EXPORT,operation_log_type,,green,1,supervisor,1.69935E+12,,0,
36,9,dictData.logType.query,SELECT,operation_log_type,,gold,1,supervisor,1.69935E+12,,0,
37,10,dictData.logType.setup,SET,operation_log_type,,,1,supervisor,1.69935E+12,,0,
38,11,dictData.logType.update,UPDATE,operation_log_type,,magenta,1,supervisor,1.69935E+12,,0,
39,12,dictData.logType.upload,UPLOAD,operation_log_type,,yellow,1,supervisor,1.69935E+12,,0,
40,13,dictData.logType.view,View,operation_log_type,,purple,1,supervisor,1.69935E+12,,0,
41,14,dictData.logType.login,0,security_log_type,,,1,supervisor,1.69935E+12,,0,
42,15,dictData.logType.logout,1,security_log_type,,cyan,1,supervisor,1.69935E+12,,0,
43,1,dictData.securityLogType.add,2,security_log_type,,green,1,supervisor,1.69935E+12,,0,
44,2,dictData.securityLogType.update,3,security_log_type,,lime,1,supervisor,1.69935E+12,,0,
45,3,dictData.securityLogType.delete,4,security_log_type,,,1,supervisor,1.69935E+12,,0,
46,4,dictData.securityLogType.lock,5,security_log_type,,,1,supervisor,1.69935E+12,,0,
47,5,dictData.securityLogType.unlock,6,security_log_type,,gold,1,supervisor,1.69935E+12,,0,
48,6,dictData.securityLogType.reset,7,security_log_type,,cyan,1,supervisor,1.69935E+12,,0,
49,7,dictData.securityLogType.deactivate,8,security_log_type,,blue ,1,supervisor,1.69935E+12,,0,
50,8,dictData.jobSaveLog.no,0,sys_job_save_log,,,1,supervisor,1.69935E+12,,0,
51,9,dictData.jobSaveLog.yes,1,sys_job_save_log,,,1,supervisor,1.69935E+12,,0,
52,1,dictData.neVersionStatus.upload,Uploaded,ne_version_status,,processing,1,supervisor,1.69935E+12,,0,
53,2,dictData.neVersionStatus.inactive,Inactive,ne_version_status,,gold,1,supervisor,1.69935E+12,,0,
54,3,dictData.neVersionStatus.active,Active,ne_version_status,,success,1,supervisor,1.69935E+12,,0,
55,1,dictData.alarmStatus.history,0,alarm_status,,,1,supervisor,1.69935E+12,,0,
56,2,dictData.alarmStatus.active,1,alarm_status,,,1,supervisor,1.69935E+12,,0,
57,1,dictData.datascope.all,1,sys_role_datascope,,,1,supervisor,1.69935E+12,,0,
58,2,dictData.datascope.custom,2,sys_role_datascope,,,1,supervisor,1.69935E+12,,0,
59,3,dictData.datascope.dept,3,sys_role_datascope,,,1,supervisor,1.69935E+12,,0,
60,4,dictData.datascope.deptAndChid,4,sys_role_datascope,,,1,supervisor,1.69935E+12,,0,
61,5,dictData.datascope.self,5,sys_role_datascope,,,1,supervisor,1.69935E+12,,0,
62,1,dictData.active_alarm_type.communication,CommunicationAlarm,active_alarm_type,,gold,1,supervisor,1.69935E+12,,0,
63,2,dictData.active_alarm_type.equipment,EquipmentAlarm,active_alarm_type,,cyan,1,supervisor,1.69935E+12,,0,
64,3,dictData.active_alarm_type.processing,ProcessingFailure,active_alarm_type,,blue ,1,supervisor,1.69935E+12,,0,
65,4,dictData.active_alarm_type.environmental,EnvironmentalAlarm,active_alarm_type,,yellow,1,supervisor,1.69935E+12,,0,
66,5,dictData.active_alarm_type.qualityOfService,QualityOfServiceAlarm,active_alarm_type,,purple,1,supervisor,1.69935E+12,,0,
67,0,dictData.active_clear_type.notCleared,0,active_clear_type,,processing,1,supervisor,1.69935E+12,,0,
68,1,dictData.active_clear_type.auto,1,active_clear_type,,gold,1,supervisor,1.69935E+12,,0,
69,2,dictData.active_clear_type.hand,2,active_clear_type,,success,1,supervisor,1.69935E+12,,0,
70,0,dictData.active_ack_state.unconfirmed,0,active_ack_state,,processing,1,supervisor,1.69935E+12,,0,
71,1,dictData.active_ack_state.confirmed,1,active_ack_state,,success,1,supervisor,1.69935E+12,,0,
72,1,dictData.active_alarm_severity.critical,Critical,active_alarm_severity,,gold,1,supervisor,1.69935E+12,,0,
73,2,dictData.active_alarm_severity.major,Major,active_alarm_severity,,cyan,1,supervisor,1.69935E+12,,0,
74,3,dictData.active_alarm_severity.minor,Minor,active_alarm_severity,,blue ,1,supervisor,1.69935E+12,,0,
75,4,dictData.active_alarm_severity.warning,Warning,active_alarm_severity,,yellow,1,supervisor,1.69935E+12,,0,
76,5,dictData.active_alarm_severity.event,Event,active_alarm_severity,,purple,1,supervisor,1.69935E+12,,0,
77,1,dictType.index_status.normal,normal,index_status,#91cc75,,1,supervisor,1.70202E+12,supervisor,1.70202E+12,
78,2,dictType.index_status.abnormal,abnormal,index_status,#ee6666,,1,supervisor,1.70202E+12,supervisor,1.70202E+12,
1 dict_code dict_sort dict_label dict_value dict_type tag_class tag_type status create_by create_time update_by update_time remark
2 1 1 dictData.sex.un 0 sys_user_sex 1 supervisor 1.69935E+12 0
3 2 2 dictData.sex.male 1 sys_user_sex 1 supervisor 1.69935E+12 0
4 3 3 dictData.sex.female 2 sys_user_sex 1 supervisor 1.69935E+12 0
5 4 1 dictData.show 1 sys_show_hide success 1 supervisor 1.69935E+12 0
6 5 2 dictData.hide 0 sys_show_hide error 1 supervisor 1.69935E+12 0
7 6 1 dictData.normal 1 sys_normal_disable success 1 supervisor 1.69935E+12 0
8 7 2 dictData.disable 0 sys_normal_disable error 1 supervisor 1.69935E+12 0
9 8 1 dictData.yes Y sys_yes_no success 1 supervisor 1.69935E+12 0
10 9 2 dictData.no N sys_yes_no error 1 supervisor 1.69935E+12 0
11 10 1 dictData.success 1 sys_common_status success 1 supervisor 1.69935E+12 0
12 11 2 dictData.fail 0 sys_common_status error 1 supervisor 1.69935E+12 0
13 12 1 dictData.jobStatus.normal 1 sys_job_status 1 supervisor 1.69935E+12 0
14 13 2 dictData.jobStatus.pause 0 sys_job_status 1 supervisor 1.69935E+12 0
15 14 1 dictData.jobGroup.Default DEFAULT sys_job_group 1 supervisor 1.69935E+12 0
16 15 2 dictData.jobGroup.System SYSTEM sys_job_group 1 supervisor 1.69935E+12 0
17 16 1 dictData.operType.other 0 sys_oper_type processing 1 supervisor 1.69935E+12 0
18 17 2 dictData.operType.add 1 sys_oper_type processing 1 supervisor 1.69935E+12 0
19 18 3 dictData.operType.edit 2 sys_oper_type processing 1 supervisor 1.69935E+12 0
20 19 4 dictData.operType.delete 3 sys_oper_type error 1 supervisor 1.69935E+12 0
21 20 5 dictData.operType.auth 4 sys_oper_type success 1 supervisor 1.69935E+12 0
22 21 6 dictData.operType.export 5 sys_oper_type warning 1 supervisor 1.69935E+12 0
23 22 7 dictData.operType.import 6 sys_oper_type warning 1 supervisor 1.69935E+12 0
24 23 8 dictData.operType.forced quit 7 sys_oper_type error 1 supervisor 1.69935E+12 0
25 24 9 dictData.operType.clear 8 sys_oper_type error 1 supervisor 1.69935E+12 0
26 25 1 dictData.trace.interface Interface trace_type 1 supervisor 1.69935E+12 0
27 26 2 dictData.trace.device Device trace_type 1 supervisor 1.69935E+12 0
28 27 3 dictData.trace.user UE trace_type 1 supervisor 1.69935E+12 0
29 28 1 dictData.logType.download DOWNLOAD operation_log_type pink 1 supervisor 1.69935E+12 0
30 29 2 dictData.logType.activation Activation operation_log_type blue 1 supervisor 1.69935E+12 0
31 30 3 dictData.logType.add ADD operation_log_type cyan 1 supervisor 1.69935E+12 0
32 31 4 dictData.logType.other AUTO operation_log_type gold 1 supervisor 1.69935E+12 0
33 32 5 dictData.logType.back BACK operation_log_type blue 1 supervisor 1.69935E+12 0
34 33 6 dictData.logType.delete DELETE operation_log_type red 1 supervisor 1.69935E+12 0
35 34 7 dictData.logType.distribute Distribute operation_log_type yellow 1 supervisor 1.69935E+12 0
36 35 8 dictData.logType.export EXPORT operation_log_type green 1 supervisor 1.69935E+12 0
37 36 9 dictData.logType.query SELECT operation_log_type gold 1 supervisor 1.69935E+12 0
38 37 10 dictData.logType.setup SET operation_log_type 1 supervisor 1.69935E+12 0
39 38 11 dictData.logType.update UPDATE operation_log_type magenta 1 supervisor 1.69935E+12 0
40 39 12 dictData.logType.upload UPLOAD operation_log_type yellow 1 supervisor 1.69935E+12 0
41 40 13 dictData.logType.view View operation_log_type purple 1 supervisor 1.69935E+12 0
42 41 14 dictData.logType.login 0 security_log_type 1 supervisor 1.69935E+12 0
43 42 15 dictData.logType.logout 1 security_log_type cyan 1 supervisor 1.69935E+12 0
44 43 1 dictData.securityLogType.add 2 security_log_type green 1 supervisor 1.69935E+12 0
45 44 2 dictData.securityLogType.update 3 security_log_type lime 1 supervisor 1.69935E+12 0
46 45 3 dictData.securityLogType.delete 4 security_log_type 1 supervisor 1.69935E+12 0
47 46 4 dictData.securityLogType.lock 5 security_log_type 1 supervisor 1.69935E+12 0
48 47 5 dictData.securityLogType.unlock 6 security_log_type gold 1 supervisor 1.69935E+12 0
49 48 6 dictData.securityLogType.reset 7 security_log_type cyan 1 supervisor 1.69935E+12 0
50 49 7 dictData.securityLogType.deactivate 8 security_log_type blue 1 supervisor 1.69935E+12 0
51 50 8 dictData.jobSaveLog.no 0 sys_job_save_log 1 supervisor 1.69935E+12 0
52 51 9 dictData.jobSaveLog.yes 1 sys_job_save_log 1 supervisor 1.69935E+12 0
53 52 1 dictData.neVersionStatus.upload Uploaded ne_version_status processing 1 supervisor 1.69935E+12 0
54 53 2 dictData.neVersionStatus.inactive Inactive ne_version_status gold 1 supervisor 1.69935E+12 0
55 54 3 dictData.neVersionStatus.active Active ne_version_status success 1 supervisor 1.69935E+12 0
56 55 1 dictData.alarmStatus.history 0 alarm_status 1 supervisor 1.69935E+12 0
57 56 2 dictData.alarmStatus.active 1 alarm_status 1 supervisor 1.69935E+12 0
58 57 1 dictData.datascope.all 1 sys_role_datascope 1 supervisor 1.69935E+12 0
59 58 2 dictData.datascope.custom 2 sys_role_datascope 1 supervisor 1.69935E+12 0
60 59 3 dictData.datascope.dept 3 sys_role_datascope 1 supervisor 1.69935E+12 0
61 60 4 dictData.datascope.deptAndChid 4 sys_role_datascope 1 supervisor 1.69935E+12 0
62 61 5 dictData.datascope.self 5 sys_role_datascope 1 supervisor 1.69935E+12 0
63 62 1 dictData.active_alarm_type.communication CommunicationAlarm active_alarm_type gold 1 supervisor 1.69935E+12 0
64 63 2 dictData.active_alarm_type.equipment EquipmentAlarm active_alarm_type cyan 1 supervisor 1.69935E+12 0
65 64 3 dictData.active_alarm_type.processing ProcessingFailure active_alarm_type blue 1 supervisor 1.69935E+12 0
66 65 4 dictData.active_alarm_type.environmental EnvironmentalAlarm active_alarm_type yellow 1 supervisor 1.69935E+12 0
67 66 5 dictData.active_alarm_type.qualityOfService QualityOfServiceAlarm active_alarm_type purple 1 supervisor 1.69935E+12 0
68 67 0 dictData.active_clear_type.notCleared 0 active_clear_type processing 1 supervisor 1.69935E+12 0
69 68 1 dictData.active_clear_type.auto 1 active_clear_type gold 1 supervisor 1.69935E+12 0
70 69 2 dictData.active_clear_type.hand 2 active_clear_type success 1 supervisor 1.69935E+12 0
71 70 0 dictData.active_ack_state.unconfirmed 0 active_ack_state processing 1 supervisor 1.69935E+12 0
72 71 1 dictData.active_ack_state.confirmed 1 active_ack_state success 1 supervisor 1.69935E+12 0
73 72 1 dictData.active_alarm_severity.critical Critical active_alarm_severity gold 1 supervisor 1.69935E+12 0
74 73 2 dictData.active_alarm_severity.major Major active_alarm_severity cyan 1 supervisor 1.69935E+12 0
75 74 3 dictData.active_alarm_severity.minor Minor active_alarm_severity blue 1 supervisor 1.69935E+12 0
76 75 4 dictData.active_alarm_severity.warning Warning active_alarm_severity yellow 1 supervisor 1.69935E+12 0
77 76 5 dictData.active_alarm_severity.event Event active_alarm_severity purple 1 supervisor 1.69935E+12 0
78 77 1 dictType.index_status.normal normal index_status #91cc75 1 supervisor 1.70202E+12 supervisor 1.70202E+12
79 78 2 dictType.index_status.abnormal abnormal index_status #ee6666 1 supervisor 1.70202E+12 supervisor 1.70202E+12

View File

@@ -0,0 +1,543 @@
dict_code,dict_sort,dict_label,dict_value,dict_type,tag_class,tag_type,status,create_by,create_time,update_by,update_time,remark
3000,3000,i18n,English,i18n_en,,,1,supervisor,1.70E+12,,0,
3001,3001,hello,Hello,i18n_en,,,1,supervisor,1.70E+12,,0,
3002,3002,menu.system,System,i18n_en,,,1,supervisor,1.70E+12,,0,
3003,3003,menu.monitor,Monitor,i18n_en,,,1,supervisor,1.70E+12,,0,
3004,3004,menu.tools,Tools,i18n_en,,,1,supervisor,1.70E+12,,0,
3005,3005,menu.config,Configuration,i18n_en,,,1,supervisor,1.70E+12,,0,
3006,3006,menu.ueUser,UE,i18n_en,,,1,supervisor,1.70E+12,,0,
3007,3007,menu.systemRemark,System Management Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3008,3008,menu.monitorRemark,System Monitor Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3009,3009,menu.toolsRemark,System Tools Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3010,3010,menu.configRemark,OMC Configuration Management Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3011,3011,menu.ueUserRemark,Network Element Terminal Information Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3012,3012,menu.security.user,User Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3013,3013,menu.security.role,Role Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3014,3014,menu.security.roleUser,Assigning Roles,i18n_en,,,1,supervisor,1.70E+12,,0,
3015,3015,menu.system.menu,Menu Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3016,3016,menu.security.dept,Department Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3017,3017,menu.security.post,Position Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3018,3018,menu.system.dictType,Dictionary Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3019,3019,menu.system.dictData,Dictionary Data,i18n_en,,,1,supervisor,1.70E+12,,0,
3020,3020,menu.system.paramSet,Parameter Settings,i18n_en,,,1,supervisor,1.70E+12,,0,
3021,3021,menu.system.systemLog,System Log,i18n_en,,,1,supervisor,1.70E+12,,0,
3022,3022,menu.system.systemInfo,System Information,i18n_en,,,1,supervisor,1.70E+12,,0,
3023,3023,menu.system.cacheInfo,Cache Information,i18n_en,,,1,supervisor,1.70E+12,,0,
3024,3024,menu.system.cache,Cache Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3025,3025,menu.security.onlineUser,Online Users,i18n_en,,,1,supervisor,1.70E+12,,0,
3026,3026,menu.system.job,Scheduling Tasks,i18n_en,,,1,supervisor,1.70E+12,,0,
3027,3027,menu.system.jobLog,Scheduling Logs,i18n_en,,,1,supervisor,1.70E+12,,0,
3028,3028,menu.tools.help,Help Documentation,i18n_en,,,1,supervisor,1.70E+12,,0,
3029,3029,menu.log.operat,Operation logs,i18n_en,,,1,supervisor,1.70E+12,,0,
3030,3030,menu.log.login,Security logs,i18n_en,,,1,supervisor,1.70E+12,,0,
3031,3031,menu.security.userRemark,User Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3032,3032,menu.security.roleRemark,Role Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3033,3033,menu.security.roleUserRemark,Assign Roles Embedded Hidden Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3034,3034,menu.system.menuRemark,Menu Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3035,3035,menu.security.deptRemark,Department management menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3036,3036,menu.security.postRemark,Job Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3037,3037,menu.system.dictTypeRemark,Dictionary management menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3038,3038,menu.system.dictDataRemark,Dictionary data embedded hidden menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3039,3039,menu.system.paramSetRemark,Parameter setting menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3040,3040,menu.system.systemLogRemark,System Log Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3041,3041,menu.system.systemInfoRemark,System information menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3042,3042,menu.system.cacheInfoRemark,Cache Information Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3043,3043,menu.system.cacheRemark,Cache List Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3044,3044,menu.security.onlineUserRemark,Online User Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3045,3045,menu.system.jobRemark,Scheduling Tasks menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3046,3046,menu.system.jobLogRemark,Scheduling Log Embedded Hidden Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3047,3047,menu.tools.helpRemark,Help file menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3048,3048,menu.log.operatRemark,Operation log menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3049,3049,menu.log.loginRemark,Login log menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3050,3050,menu.common.query,Inquiry,i18n_en,,,1,supervisor,1.70E+12,,0,
3051,3051,menu.common.add,Add,i18n_en,,,1,supervisor,1.70E+12,,0,
3052,3052,menu.common.edit,Modify,i18n_en,,,1,supervisor,1.70E+12,,0,
3053,3053,menu.common.delete,Delete,i18n_en,,,1,supervisor,1.70E+12,,0,
3054,3054,menu.common.export,Export,i18n_en,,,1,supervisor,1.70E+12,,0,
3055,3055,menu.common.import,Import,i18n_en,,,1,supervisor,1.70E+12,,0,
3056,3056,menu.common.reset,Reset,i18n_en,,,1,supervisor,1.70E+12,,0,
3057,3057,menu.common.unlock,Account Unlock,i18n_en,,,1,supervisor,1.70E+12,,0,
3058,3058,menu.forcedQuit.batch ,Batch Undo,i18n_en,,,1,supervisor,1.70E+12,,0,
3059,3059,menu.forcedQuit.single,Individual Forced Retirement,i18n_en,,,1,supervisor,1.70E+12,,0,
3060,3060,menu.ueUser.authUDM,UDM Authentication,i18n_en,,,1,supervisor,1.70E+12,,0,
3061,3061,menu.ueUser.subUDM,UDM Subscribers,i18n_en,,,1,supervisor,1.70E+12,,0,
3062,3062,menu.ueUser.authUDMRemark,UDM Authentication Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3063,3063,menu.ueUser.subUDMRemark,UDM Subscriber Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3064,3064,menu.config.neManage,NE Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3065,3065,menu.config.configNE,Parameter Configuration Original,i18n_en,,,1,supervisor,1.70E+12,,0,
3066,3066,menu.config.neManageRemark,Network Element Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3067,3067,menu.config.configNERemark,Parameter Configuration Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3068,3068,menu.config.backupManage,Backup Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3069,3069,menu.config.softwareManage,Software Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3070,3070,menu.ueUser.onlineIMS,IMS Online Users,i18n_en,,,1,supervisor,1.70E+12,,0,
3071,3071,menu.ueUser.onlineUE,UE Online Information,i18n_en,,,1,supervisor,1.70E+12,,0,
3072,3072,menu.ueUser.base5G,Radio Information,i18n_en,,,1,supervisor,1.70E+12,,0,
3073,3073,menu.trace,Trace,i18n_en,,,1,supervisor,1.70E+12,,0,
3074,3074,menu.trace.task,Trace Tasks,i18n_en,,,1,supervisor,1.70E+12,,0,
3075,3075,menu.trace.analysis,Signaling Analysis,i18n_en,,,1,supervisor,1.70E+12,,0,
3076,3076,menu.trace.pcap,Signaling Capture,i18n_en,,,1,supervisor,1.70E+12,,0,
3077,3077,menu.fault,Monitor,i18n_en,,,1,supervisor,1.70E+12,,0,
3078,3078,menu.config.backupManageRemark,Backup Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3079,3079,menu.config.softwareManageRemark,Software Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3080,3080,menu.ueUser.onlineIMSRemark,IMS Online User Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3081,3081,menu.ueUser.onlineUERemark,UE Online Information Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3082,3082,menu.ueUser.base5GRemark,5G Base Station Information Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3083,3083,menu.traceRemark,Tracking Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3084,3084,menu.trace.taskRemark,Tracking Task Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3085,3085,menu.trace.analysisRemark,Signaling Analysis Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3086,3086,menu.trace.pcapRemark,Signaling Capture Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3087,3087,menu.faultRemark,Fault Management Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3088,3088,menu.fault.active,Active Alarms,i18n_en,,,1,supervisor,1.70E+12,,0,
3089,3089,menu.log,Logs,i18n_en,,,1,supervisor,1.70E+12,,0,
3090,3090,menu.log.operatOld,Operation Logs (old),i18n_en,,,1,supervisor,1.70E+12,,0,
3091,3091,menu.log.mml,MML Logs,i18n_en,,,1,supervisor,1.70E+12,,0,
3092,3092,menu.log.alarm,Alarm Logs,i18n_en,,,1,supervisor,1.70E+12,,0,
3093,3093,menu.log.securityOld,Security Logs (old),i18n_en,,,1,supervisor,1.70E+12,,0,
3094,3094,menu.log.forwarding,Alarm Forwarding Logs,i18n_en,,,1,supervisor,1.70E+12,,0,
3095,3095,menu.log.set,Log Settings,i18n_en,,,1,supervisor,1.70E+12,,0,
3096,3096,menu.monitor.sessionUser,User Sessions,i18n_en,,,1,supervisor,1.70E+12,,0,
3097,3097,menu.fault.history,Historical Alarms,i18n_en,,,1,supervisor,1.70E+12,,0,
3098,3098,menu.fault.set,Settings,i18n_en,,,1,supervisor,1.70E+12,,0,
3099,3099,menu.perf,Performance,i18n_en,,,1,supervisor,1.70E+12,,0,
3100,3100,menu.fault.activemRemark,Active Alarm Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3101,3101,menu.logRemark,Log Management Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3102,3102,menu.log.operatOldRemark,Operation log old layui menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3103,3103,menu.log.mmlRemark,Operation MML Log,i18n_en,,,1,supervisor,1.70E+12,,0,
3104,3104,menu.log.alarmRemark,Alarm Log Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3105,3105,menu.log.securityOldRemark,Security Log Old Layui Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3106,3106,menu.log.forwardingRemark,Alarm forward log menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3107,3107,menu.log.setRemark,Log Settings menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3108,3108,menu.monitor.sessionUserRemark,User Session Old Layui Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3109,3109,menu.fault.historyRemark,Alarm history menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3110,3110,menu.fault.setRemark,Fault General Setup Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3111,3111,menu.perfRemark,Performance Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3112,3112,menu.perf.task,Performance Tasks,i18n_en,,,1,supervisor,1.70E+12,,0,
3113,3113,menu.perf.data,Performance Data,i18n_en,,,1,supervisor,1.70E+12,,0,
3114,3114,menu.perf.report,Performance Reports,i18n_en,,,1,supervisor,1.70E+12,,0,
3115,3115,menu.perf.threshold,Performance Thresholds,i18n_en,,,1,supervisor,1.70E+12,,0,
3116,3116,menu.perf.kpi,Key Performance Indicators,i18n_en,,,1,supervisor,1.70E+12,,0,
3117,3117,menu.perf.customTarget,Custom Metrics,i18n_en,,,1,supervisor,1.70E+12,,0,
3118,3118,menu.perf.set,Performance General Settings,i18n_en,,,1,supervisor,1.70E+12,,0,
3119,3119,menu.mml,MML,i18n_en,,,1,supervisor,1.70E+12,,0,
3120,3120,menu.mml.ne,NE Operation,i18n_en,,,1,supervisor,1.70E+12,,0,
3121,3121,menu.mml.udm,UDM Operation,i18n_en,,,1,supervisor,1.70E+12,,0,
3122,3122,menu.mml.set,MML Settings,i18n_en,,,1,supervisor,1.70E+12,,0,
3123,3123,menu.mml.omc,OMC Operation,i18n_en,,,1,supervisor,1.70E+12,,0,
3124,3124,menu.perf.taskRemark,Task Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3125,3125,menu.perf.dataRemark,Performance Data Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3126,3126,menu.perf.reportRemark,Performance Report Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3127,3127,menu.perf.thresholdRemark,Performance Threshold Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3128,3128,menu.perf.kpiRemark,Key Performance Indicator Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3129,3129,menu.perf.customTargetRemark,Custom Metrics Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3130,3130,menu.perf.setRemark,Performance General Settings Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3131,3131,menu.mmlRemark,MML Management Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3132,3132,menu.mml.neRemark,Network Element Operations Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3133,3133,menu.mml.udmRemark,Network Element UDM User Data Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3134,3134,menu.mml.setRemark,MML Setup Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3135,3135,menu.mml.omcRemark,OMC Operation Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3136,3136,menu.config.licenseManage,License Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3137,3137,menu.security,Security,i18n_en,,,1,supervisor,1.70E+12,,0,
3138,3138,menu.system.systemSet,System Settings,i18n_en,,,1,supervisor,1.70E+12,,0,
3139,3139,menu.system.systemResource,System Resources,i18n_en,,,1,supervisor,1.70E+12,,0,
3140,3140,menu.config.configNEForm,Parameter Configuration Form,i18n_en,,,1,supervisor,1.70E+12,,0,
3141,3141,menu.config.configNETree,Parameter Configuration Tree,i18n_en,,,1,supervisor,1.70E+12,,0,
3142,3142,menu.config.configNETreeTable,Parameter Configuration,i18n_en,,,1,supervisor,1.70E+12,,0,
3143,3143,menu.config.licenseManageRemark,License Management Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3144,3144,menu.securityRemark,Security Management Catalog,i18n_en,,,1,supervisor,1.70E+12,,0,
3145,3145,menu.system.systemSetRemark,System Settings Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3146,3146,menu.system.systemResourceRemark,System Resources cpu io network menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3147,3147,menu.config.configNEFormRemark,Parameter Configuration Form Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3148,3148,menu.config.configNETreeRemark,Parameter Configuration Tree Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3149,3149,menu.config.configNETreeTableRemark,Configuring the TreeTable menu with parameters,i18n_en,,,1,supervisor,1.70E+12,,0,
3150,3150,menu.noData,There is no accessible menu data!,i18n_en,,,1,supervisor,1.70E+12,,0,
3151,3151,menu.errNameExists,"Failed to operate menu [{name}], menu name already exists!",i18n_en,,,1,supervisor,1.70E+12,,0,
3152,3152,menu.errPathExists,"Failed to operate menu [{name}], menu routing address already exists!",i18n_en,,,1,supervisor,1.70E+12,,0,
3153,3153,menu.errFramePath,"Failed to manipulate menu [{name}], non-internal address should start with http(s)://",i18n_en,,,1,supervisor,1.70E+12,,0,
3154,3154,menu.errParentStatus,The parent menu is not enabled!,i18n_en,,,1,supervisor,1.70E+12,,0,
3155,3155,menu.errHasChildUse,"Operation menu [{name}] failed, number of submenus in use exists: {num}",i18n_en,,,1,supervisor,1.70E+12,,0,
3156,3156,menu.errHasRoleUse,"Operation menu [{name}] failed, number of roles the menu has been assigned to: {num}",i18n_en,,,1,supervisor,1.70E+12,,0,
3400,3400,dictData.sex.un,Not selected,i18n_en,,,1,supervisor,1.70E+12,,0,
3401,3401,dictData.sex.male,Male,i18n_en,,,1,supervisor,1.70E+12,,0,
3402,3402,dictData.sex.female,Female,i18n_en,,,1,supervisor,1.70E+12,,0,
3403,3403,dictData.show,Show,i18n_en,,,1,supervisor,1.70E+12,,0,
3404,3404,dictData.hide,Hide,i18n_en,,,1,supervisor,1.70E+12,,0,
3405,3405,dictData.normal,Active,i18n_en,,,1,supervisor,1.70E+12,,0,
3406,3406,dictData.disable,Inactive,i18n_en,,,1,supervisor,1.70E+12,,0,
3407,3407,dictData.yes,Yes,i18n_en,,,1,supervisor,1.70E+12,,0,
3408,3408,dictData.no,No,i18n_en,,,1,supervisor,1.70E+12,,0,
3409,3409,dictData.success,Successful,i18n_en,,,1,supervisor,1.70E+12,,0,
3410,3410,dictData.fail,Failed,i18n_en,,,1,supervisor,1.70E+12,,0,
3411,3411,dictData.jobStatus.normal,Active,i18n_en,,,1,supervisor,1.70E+12,,0,
3412,3412,dictData.jobStatus.pause,Inactive,i18n_en,,,1,supervisor,1.70E+12,,0,
3413,3413,dictData.jobGroup.Default,Default,i18n_en,,,1,supervisor,1.70E+12,,0,
3414,3414,dictData.jobGroup.System,System,i18n_en,,,1,supervisor,1.70E+12,,0,
3415,3415,dictData.operType.other,Other,i18n_en,,,1,supervisor,1.70E+12,,0,
3416,3416,dictData.operType.add,New,i18n_en,,,1,supervisor,1.70E+12,,0,
3417,3417,dictData.operType.edit,Modify,i18n_en,,,1,supervisor,1.70E+12,,0,
3418,3418,dictData.operType.delete,Delete,i18n_en,,,1,supervisor,1.70E+12,,0,
3419,3419,dictData.operType.auth,Authorization,i18n_en,,,1,supervisor,1.70E+12,,0,
3420,3420,dictData.operType.export,Export,i18n_en,,,1,supervisor,1.70E+12,,0,
3421,3421,dictData.operType.import,Import,i18n_en,,,1,supervisor,1.70E+12,,0,
3422,3422,dictData.operType.forced quit,Forced Retirement,i18n_en,,,1,supervisor,1.70E+12,,0,
3423,3423,dictData.operType.clear,Clear,i18n_en,,,1,supervisor,1.70E+12,,0,
3424,3424,dictData.trace.interface,Interface Tracing,i18n_en,,,1,supervisor,1.70E+12,,0,
3425,3425,dictData.trace.device,Device Tracing,i18n_en,,,1,supervisor,1.70E+12,,0,
3426,3426,dictData.trace.user,User Tracing,i18n_en,,,1,supervisor,1.70E+12,,0,
3427,3427,dictData.logType.download,Download,i18n_en,,,1,supervisor,1.70E+12,,0,
3428,3428,dictData.logType.activation,Activation,i18n_en,,,1,supervisor,1.70E+12,,0,
3429,3429,dictData.logType.add,New,i18n_en,,,1,supervisor,1.70E+12,,0,
3430,3430,dictData.logType.other,Other,i18n_en,,,1,supervisor,1.70E+12,,0,
3431,3431,dictData.logType.back,Rollback,i18n_en,,,1,supervisor,1.70E+12,,0,
3432,3432,dictData.logType.delete,Delete,i18n_en,,,1,supervisor,1.70E+12,,0,
3433,3433,dictData.logType.distribute,Assign,i18n_en,,,1,supervisor,1.70E+12,,0,
3434,3434,dictData.logType.export,Export,i18n_en,,,1,supervisor,1.70E+12,,0,
3435,3435,dictData.logType.query,Query,i18n_en,,,1,supervisor,1.70E+12,,0,
3436,3436,dictData.logType.setup,Setup,i18n_en,,,1,supervisor,1.70E+12,,0,
3437,3437,dictData.logType.update,Update,i18n_en,,,1,supervisor,1.70E+12,,0,
3438,3438,dictData.logType.upload,Upload,i18n_en,,,1,supervisor,1.70E+12,,0,
3439,3439,dictData.logType.view,View,i18n_en,,,1,supervisor,1.70E+12,,0,
3440,3440,dictData.logType.login,Login,i18n_en,,,1,supervisor,1.70E+12,,0,
3441,3441,dictData.logType.logout,Logout,i18n_en,,,1,supervisor,1.70E+12,,0,
3442,3442,dictData.securityLogType.add,New,i18n_en,,,1,supervisor,1.70E+12,,0,
3443,3443,dictData.securityLogType.update,Update,i18n_en,,,1,supervisor,1.70E+12,,0,
3444,3444,dictData.securityLogType.delete,Delete,i18n_en,,,1,supervisor,1.70E+12,,0,
3445,3445,dictData.securityLogType.lock,Locked,i18n_en,,,1,supervisor,1.70E+12,,0,
3446,3446,dictData.securityLogType.unlock,Unlock,i18n_en,,,1,supervisor,1.70E+12,,0,
3447,3447,dictData.securityLogType.reset,Reset,i18n_en,,,1,supervisor,1.70E+12,,0,
3448,3448,dictData.securityLogType.deactivate,Deactivate,i18n_en,,,1,supervisor,1.70E+12,,0,
3449,3449,dictData.jobSaveLog.no,No Record,i18n_en,,,1,supervisor,1.70E+12,,0,
3450,3450,dictData.jobSaveLog.yes,Recorded,i18n_en,,,1,supervisor,1.70E+12,,0,
3451,3451,dictData.neVersionStatus.upload,Uploaded,i18n_en,,,1,supervisor,1.70E+12,,0,
3452,3452,dictData.neVersionStatus.inactive,Inactivated,i18n_en,,,1,supervisor,1.70E+12,,0,
3453,3453,dictData.neVersionStatus.active,Activated,i18n_en,,,1,supervisor,1.70E+12,,0,
3454,3454,dictData.alarmStatus.history,Historical Alarm,i18n_en,,,1,supervisor,1.70E+12,,0,
3455,3455,dictData.alarmStatus.active,Active Alarm,i18n_en,,,1,supervisor,1.70E+12,,0,
3456,3456,dictData.export.code,Data Codes,i18n_en,,,1,supervisor,1.70E+12,,0,
3457,3457,dictData.export.sort,Data Sorting,i18n_en,,,1,supervisor,1.70E+12,,0,
3458,3458,dictData.export.label,Data Labeling,i18n_en,,,1,supervisor,1.70E+12,,0,
3459,3459,dictData.export.value,Data Key,i18n_en,,,1,supervisor,1.70E+12,,0,
3460,3460,dictData.export.type,Data Sorting,i18n_en,,,1,supervisor,1.70E+12,,0,
3461,3461,dictData.export.status,Data Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3462,3462,dictData.datascope.all,All data permissions,i18n_en,,,1,supervisor,1.70E+12,,0,
3463,3463,dictData.datascope.custom,Customized Data Rights,i18n_en,,,1,supervisor,1.70E+12,,0,
3464,3464,dictData.datascope.dept,Departmental Data Permissions,i18n_en,,,1,supervisor,1.70E+12,,0,
3465,3465,dictData.datascope.deptAndChid,Department and below,i18n_en,,,1,supervisor,1.70E+12,,0,
3466,3466,dictData.datascope.self,Personal data access only,i18n_en,,,1,supervisor,1.70E+12,,0,
3467,3467,dictData.noData,There is no accessible dictionary code data!,i18n_en,,,1,supervisor,1.70E+12,,0,
3468,3468,dictData.errLabelExists,"Failed to manipulate data [{name}], tag name already exists under this dictionary type!",i18n_en,,,1,supervisor,1.70E+12,,0,
3500,3500,dictType.sys_user_sex,User Gender,i18n_en,,,1,supervisor,1.70E+12,,0,
3501,3501,dictType.sys_show_hide,Menu Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3502,3502,dictType.sys_normal_disable,System switches,i18n_en,,,1,supervisor,1.70E+12,,0,
3503,3503,dictType.sys_job_status,Task Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3504,3504,dictType.sys_job_group,Task Grouping,i18n_en,,,1,supervisor,1.70E+12,,0,
3505,3505,dictType.sys_yes_no,System or not,i18n_en,,,1,supervisor,1.70E+12,,0,
3506,3506,dictType.sys_oper_type,Operation Type,i18n_en,,,1,supervisor,1.70E+12,,0,
3507,3507,dictType.sys_common_status,System Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3508,3508,dictType.trace_type,Trace Types,i18n_en,,,1,supervisor,1.70E+12,,0,
3509,3509,dictType.operation_log_type,Operation Log Type,i18n_en,,,1,supervisor,1.70E+12,,0,
3510,3510,dictType.alarm_status,Alarm Log Type,i18n_en,,,1,supervisor,1.70E+12,,0,
3511,3511,dictType.security_log_type,Security Log Type,i18n_en,,,1,supervisor,1.70E+12,,0,
3512,3512,dictType.ne_version_status,Network element software version status,i18n_en,,,1,supervisor,1.70E+12,,0,
3513,3513,dictType.i18n_en,Multi-language - English,i18n_en,,,1,supervisor,1.70E+12,,0,
3514,3514,dictType.i18n_zh,Multi-language - Chinese,i18n_en,,,1,supervisor,1.70E+12,,0,
3515,3515,dictType.sys_user_sex_remark,User gender list,i18n_en,,,1,supervisor,1.70E+12,,0,
3516,3516,dictType.sys_show_hide_remark,Menu Status List,i18n_en,,,1,supervisor,1.70E+12,,0,
3517,3517,dictType.sys_normal_disable_remark,System switch list,i18n_en,,,1,supervisor,1.70E+12,,0,
3518,3518,dictType.sys_job_status_remark,Task Status List,i18n_en,,,1,supervisor,1.70E+12,,0,
3519,3519,dictType.sys_job_group_remark,Task Grouping List,i18n_en,,,1,supervisor,1.70E+12,,0,
3520,3520,dictType.sys_yes_no_remark,System whether list,i18n_en,,,1,supervisor,1.70E+12,,0,
3521,3521,dictType.sys_oper_type_remark,Operation type list,i18n_en,,,1,supervisor,1.70E+12,,0,
3522,3522,dictType.sys_common_status_remark,Login Status List,i18n_en,,,1,supervisor,1.70E+12,,0,
3523,3523,dictType.trace_type_remark,Trace Types,i18n_en,,,1,supervisor,1.70E+12,,0,
3524,3524,dictType.operation_log_type_remark,Operation log type,i18n_en,,,1,supervisor,1.70E+12,,0,
3525,3525,dictType.alarm_status_remark,alarm_status,i18n_en,,,1,supervisor,1.70E+12,,0,
3526,3526,dictType.security_log_type_remark,Security Log Type,i18n_en,,,1,supervisor,1.70E+12,,0,
3527,3527,dictType.ne_version_status_remark,Network element software version status,i18n_en,,,1,supervisor,1.70E+12,,0,
3528,3528,dictType.i18n_en_remark,Internationalization - English,i18n_en,,,1,supervisor,1.70E+12,,0,
3529,3529,dictType.i18n_zh_remark,Internationalization - Chinese,i18n_en,,,1,supervisor,1.70E+12,,0,
3530,3530,dictType.export.id,Dictionary Code,i18n_en,,,1,supervisor,1.70E+12,,0,
3531,3531,dictType.export.name,Dictionary Name,i18n_en,,,1,supervisor,1.70E+12,,0,
3532,3532,dictType.export.type,Dictionary Type,i18n_en,,,1,supervisor,1.70E+12,,0,
3533,3533,dictType.export.status,Dictionary Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3534,3534,dictType.sys_role_datascope,System Role Data Range,i18n_en,,,1,supervisor,1.70E+12,,0,
3535,3535,dictType.sys_role_datascope_remark,System Role Data Range Mapping,i18n_en,,,1,supervisor,1.70E+12,,0,
3536,3536,dictType.noData,There is no accessible dictionary type data!,i18n_en,,,1,supervisor,1.70E+12,,0,
3537,3537,dictType.errNameExists,"Failed to manipulate dictionary [{name}], dictionary name already exists!",i18n_en,,,1,supervisor,1.70E+12,,0,
3538,3538,dictType.errTypeExists,"Failed to manipulate dictionary [{name}], dictionary type already exists!",i18n_en,,,1,supervisor,1.70E+12,,0,
3600,3600,dept.root,System Maintenance Department,i18n_en,,,1,supervisor,1.70E+12,,0,
3601,3601,dept.root.item1,Operation and Maintenance Department One,i18n_en,,,1,supervisor,1.70E+12,,0,
3602,3602,dept.noData,There is no accessible department data!,i18n_en,,,1,supervisor,1.70E+12,,0,
3603,3603,dept.errParentDelFlag,The parent department [{name}] has been deleted and is not allowed to be added.,i18n_en,,,1,supervisor,1.70E+12,,0,
3604,3604,dept.errParentStatus,"Parent department [{name}] is deactivated, additions are not allowed!",i18n_en,,,1,supervisor,1.70E+12,,0,
3605,3605,dept.errNameExists,"Manipulate department [{name}] failed, department name already exists!",i18n_en,,,1,supervisor,1.70E+12,,0,
3606,3606,dept.errParentID,"Failed to operate department [{name}], the parent department cannot be itself.",i18n_en,,,1,supervisor,1.70E+12,,0,
3607,3607,dept.errHasChildUse,"Operation failed, the department contains undeactivated sub-departments number: {num}",i18n_en,,,1,supervisor,1.70E+12,,0,
3608,3608,dept.errHasUserUse,"Deletion is not allowed, number of users the department has been assigned to: {num}",i18n_en,,,1,supervisor,1.70E+12,,0,
3630,3630,config.sys.user.initPassword,User Management-Account Initial Password,i18n_en,,,1,supervisor,1.70E+12,,0,
3631,3631,config.sys.account.captchaEnabled,Account self-help-Certification code switch,i18n_en,,,1,supervisor,1.70E+12,,0,
3632,3632,config.sys.account.registerUser,Account self-service-Whether to enable the user registration function,i18n_en,,,1,supervisor,1.70E+12,,0,
3633,3633,config.sys.user.maxRetryCount,User Management-Maximum number of password errors,i18n_en,,,1,supervisor,1.70E+12,,0,
3634,3634,config.sys.user.lockTime,User Management-Password Lock Time,i18n_en,,,1,supervisor,1.70E+12,,0,
3635,3635,config.monitor.sysResource.storeDays,Monitor-System Resources-Data retention time,i18n_en,,,1,supervisor,1.70E+12,,0,
3636,3636,config.sys.logo.type,System Settings-Logo Type,i18n_en,,,1,supervisor,1.70E+12,,0,
3637,3637,config.sys.logo.filePathIcon,System Settings-Logo File icon,i18n_en,,,1,supervisor,1.70E+12,,0,
3638,3638,config.sys.logo.filePathBrand,System Settings-Logo File Brand,i18n_en,,,1,supervisor,1.70E+12,,0,
3639,3639,config.sys.loginBackground,System Settings-Login Interface Background,i18n_en,,,1,supervisor,1.70E+12,,0,
3640,3640,config.sys.title,System Settings-System Name,i18n_en,,,1,supervisor,1.70E+12,,0,
3641,3641,config.sys.copyright,System Settings-Copyright Notice,i18n_en,,,1,supervisor,1.70E+12,,0,
3642,3642,config.sys.user.initPasswordRemark,Import user initialization password 123456,i18n_en,,,1,supervisor,1.70E+12,,0,
3643,3643,config.sys.account.captchaEnabledRemark,"Whether to enable the verification code function (true on, false off)",i18n_en,,,1,supervisor,1.70E+12,,0,
3644,3644,config.sys.account.registerUserRemark,"Whether to enable the function of registered users (true on, false off)",i18n_en,,,1,supervisor,1.70E+12,,0,
3645,3645,config.sys.user.maxRetryCountRemark,Maximum number of password errors,i18n_en,,,1,supervisor,1.70E+12,,0,
3646,3646,config.sys.user.lockTimeRemark,Password lock time in minutes (default 10 minutes),i18n_en,,,1,supervisor,1.70E+12,,0,
3647,3647,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.",i18n_en,,,1,supervisor,1.70E+12,,0,
3648,3648,config.sys.logo.typeRemark,"Full image: brand
Small image: icon",i18n_en,,,1,supervisor,1.70E+12,,0,
3649,3649,config.sys.logo.filePathIconRemark,File support for web address images and file paths for internal uploads,i18n_en,,,1,supervisor,1.70E+12,,0,
3650,3650,config.sys.logo.filePathBrandRemark,File support for web address images and paths to internally uploaded files,i18n_en,,,1,supervisor,1.70E+12,,0,
3651,3651,config.sys.loginBackgroundRemark,The file supports web address images and internal upload file paths with a # in the default background,i18n_en,,,1,supervisor,1.70E+12,,0,
3652,3652,config.sys.titleRemark,System name length limit of 11-digit string,i18n_en,,,1,supervisor,1.70E+12,,0,
3653,3653,config.sys.copyrightRemark,Footer fixing strip with copyright notice on the left side,i18n_en,,,1,supervisor,1.70E+12,,0,
3654,3654,config..export.id,Parameter Code,i18n_en,,,1,supervisor,1.70E+12,,0,
3655,3655,config..export.name,Parameter Name,i18n_en,,,1,supervisor,1.70E+12,,0,
3656,3656,config..export.key,Parameter key name,i18n_en,,,1,supervisor,1.70E+12,,0,
3657,3657,config..export.value,Parameter Key Value,i18n_en,,,1,supervisor,1.70E+12,,0,
3658,3658,config..export.type,System builtin,i18n_en,,,1,supervisor,1.70E+12,,0,
3659,3659,config..export.remark,Parameter Description,i18n_en,,,1,supervisor,1.70E+12,,0,
3660,3660,config.sys.titleValue,AGrandEMS,i18n_en,,,1,supervisor,1.70E+12,,0,
3661,3661,config.sys.copyrightValue,Copyright ©2023 AGrandTech,i18n_en,,,1,supervisor,1.70E+12,,0,
3662,3662,config.noData,No parameter configuration data is accessible!,i18n_en,,,1,supervisor,1.70E+12,,0,
3663,3663,config.errKey,Invalid key,i18n_en,,,1,supervisor,1.70E+12,,0,
3664,3664,config.errValueEq,Change state is equal to the old value!,i18n_en,,,1,supervisor,1.70E+12,,0,
3665,3665,config.errKeyExists,"Failed to manipulate parameter configuration [{name}], parameter key name already exists!",i18n_en,,,1,supervisor,1.70E+12,,0,
3666,3666,config.errDelete,Deletion of parameter configuration information failed!,i18n_en,,,1,supervisor,1.70E+12,,0,
3667,3667,config.errType,The operation contains built-in parameters and deletion is prohibited!,i18n_en,,,1,supervisor,1.70E+12,,0,
3700,3700,job.monitor_sys_resource,Monitor-System Resources,i18n_en,,,1,supervisor,1.70E+12,,0,
3701,3701,job.monitor_sys_resource_remark,"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",i18n_en,,,1,supervisor,1.70E+12,,0,
3702,3702,job.delExpiredNeBackup,Delete expired NE etc backup file,i18n_en,,,1,supervisor,1.70E+12,,0,
3703,3703,job.delExpiredNeBackupRemark,"Delete expired network element etc backup file, pass in the parameter to keep the backup file for {duration} days, default is 60 days.",i18n_en,,,1,supervisor,1.70E+12,,0,
3704,3704,job.deleteExpiredAlarmRecord,Delete expired historical alarm,i18n_en,,,1,supervisor,1.70E+12,,0,
3705,3705,job.deleteExpiredAlarmRecordRemark,"Delete expired history alarm records, pass in the parameter to keep the history alarm records for {duration} days.",i18n_en,,,1,supervisor,1.70E+12,,0,
3706,3706,job.deleteExpiredKpiRecord,Delete expired KPI records,i18n_en,,,1,supervisor,1.70E+12,,0,
3707,3707,job.deleteExpiredKpiRecordRemark,KPI record retention for {duration} days,i18n_en,,,1,supervisor,1.70E+12,,0,
3708,3708,job.backupEtcFromNE,Network Element Configuration Auto Backup Task,i18n_en,,,1,supervisor,1.70E+12,,0,
3709,3709,job.backupEtcFromNERemark,Automatically backs up the configuration files in the network element's etc directory.,i18n_en,,,1,supervisor,1.70E+12,,0,
3710,3710,job.export.jobID,Task Code,i18n_en,,,1,supervisor,1.70E+12,,0,
3711,3711,job.export.jobName,Task name,i18n_en,,,1,supervisor,1.70E+12,,0,
3712,3712,job.export.jobGroupName,Task Group Name,i18n_en,,,1,supervisor,1.70E+12,,0,
3713,3713,job.export.invokeTarget,Call target,i18n_en,,,1,supervisor,1.70E+12,,0,
3714,3714,job.export.targetParams,Incoming Parameters,i18n_en,,,1,supervisor,1.70E+12,,0,
3715,3715,job.export.cronExpression,cron expressions,i18n_en,,,1,supervisor,1.70E+12,,0,
3716,3716,job.export.status,Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3717,3717,job.export.remark,Remarks Description,i18n_en,,,1,supervisor,1.70E+12,,0,
3718,3718,job.export.jobLogID,Task log number,i18n_en,,,1,supervisor,1.70E+12,,0,
3719,3719,job.export.jobLogStatus,Task log status,i18n_en,,,1,supervisor,1.70E+12,,0,
3720,3720,job.export.jobLogTime,Task log time,i18n_en,,,1,supervisor,1.70E+12,,0,
3721,3721,job.noData,There is no accessible scheduling task data!,i18n_en,,,1,supervisor,1.70E+12,,0,
3722,3722,job.errTargetParams,Failed to operate scheduling task [{name}] with incorrect task incoming parameter json string!,i18n_en,,,1,supervisor,1.70E+12,,0,
3723,3723,job.errCronExpression,Scheduled task [{name}] failed with incorrect Cron expression!,i18n_en,,,1,supervisor,1.70E+12,,0,
3724,3724,job.errJobExists,"Failed to add a new task [{name}] to a scheduling task, same task name in the same task group",i18n_en,,,1,supervisor,1.70E+12,,0,
3725,3725,job.statusEq,The change state is equal to the old value!,i18n_en,,,1,supervisor,1.70E+12,,0,
3750,3750,role.admin,Super Administrator,i18n_en,,,1,supervisor,1.70E+12,,0,
3751,3751,role.adminAssign,Managers,i18n_en,,,1,supervisor,1.70E+12,,0,
3752,3752,role.operator,Operators,i18n_en,,,1,supervisor,1.70E+12,,0,
3753,3753,role.monitor,Monitor,i18n_en,,,1,supervisor,1.70E+12,,0,
3754,3754,role.vistor,General Users,i18n_en,,,1,supervisor,1.70E+12,,0,
3755,3755,role.adminRemark,"Super Administrator, cannot modify or delete",i18n_en,,,1,supervisor,1.70E+12,,0,
3756,3756,role.adminAssignRemark,Administrators can perform any operation on the device,i18n_en,,,1,supervisor,1.70E+12,,0,
3757,3757,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.",i18n_en,,,1,supervisor,1.70E+12,,0,
3758,3758,role.monitorRemark,"Monitoring personnel Can only read data from the device, but cannot make any settings on the device",i18n_en,,,1,supervisor,1.70E+12,,0,
3759,3759,role.vistorRemark,Ordinary users can only see system-related information,i18n_en,,,1,supervisor,1.70E+12,,0,
3760,3760,role.export.id,Role ID,i18n_en,,,1,supervisor,1.70E+12,,0,
3761,3761,role.export.name,Role Name ,i18n_en,,,1,supervisor,1.70E+12,,0,
3762,3762,role.export.key,Role Key,i18n_en,,,1,supervisor,1.70E+12,,0,
3763,3763,role.export.sort,Role Order,i18n_en,,,1,supervisor,1.70E+12,,0,
3764,3764,role.export.dataScope,Role Data Range,i18n_en,,,1,supervisor,1.70E+12,,0,
3765,3765,role.export.status,Role Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3766,3766,role.noData,There is no accessible role data!,i18n_en,,,1,supervisor,1.70E+12,,0,
3767,3767,role.statusEq,The change status is equal to the old value!,i18n_en,,,1,supervisor,1.70E+12,,0,
3768,3768,role.errNameExists,"Manipulating role [{name}] failed, role name already exists!",i18n_en,,,1,supervisor,1.70E+12,,0,
3769,3769,role.errKeyExists,"Failed to manipulate role [{name}], role key already exists!",i18n_en,,,1,supervisor,1.70E+12,,0,
3800,3800,post.admin,Systems,i18n_en,,,1,supervisor,1.70E+12,,0,
3801,3801,post.operator,Management,i18n_en,,,1,supervisor,1.70E+12,,0,
3802,3802,post.monitor,Operation & Maintenance,i18n_en,,,1,supervisor,1.70E+12,,0,
3803,3803,post.visitor,Monitoring,i18n_en,,,1,supervisor,1.70E+12,,0,
3804,3804,post.export.id,Post ID ,i18n_en,,,1,supervisor,1.70E+12,,0,
3805,3805,post.export.code,Position Code,i18n_en,,,1,supervisor,1.70E+12,,0,
3806,3806,post.export.name,Position Name,i18n_en,,,1,supervisor,1.70E+12,,0,
3807,3807,post.export.sort,Position Sort,i18n_en,,,1,supervisor,1.70E+12,,0,
3808,3808,post.export.status,Position Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3809,3809,post.noData,There is no accessible post data!,i18n_en,,,1,supervisor,1.70E+12,,0,
3810,3810,post.errNameExists,"Failed to manipulate post [{name}], post name already exists already exists",i18n_en,,,1,supervisor,1.70E+12,,0,
3811,3811,post.errCodeExists,"Failed to manipulate role [{name}], role key already exists.",i18n_en,,,1,supervisor,1.70E+12,,0,
3830,3830,user.export.id,User ID,i18n_en,,,1,supervisor,1.70E+12,,0,
3831,3831,user.export.name,Login Account,i18n_en,,,1,supervisor,1.70E+12,,0,
3832,3832,user.export.nick,Nickname,i18n_en,,,1,supervisor,1.70E+12,,0,
3833,3833,user.export.email,E-Mail,i18n_en,,,1,supervisor,1.70E+12,,0,
3834,3834,user.export.phone,Cell phone number,i18n_en,,,1,supervisor,1.70E+12,,0,
3835,3835,user.export.sex,Gender,i18n_en,,,1,supervisor,1.70E+12,,0,
3836,3836,user.export.status,User Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3837,3837,user.export.deptID,Department number,i18n_en,,,1,supervisor,1.70E+12,,0,
3838,3838,user.export.deptName,Department Name,i18n_en,,,1,supervisor,1.70E+12,,0,
3839,3839,user.export.deptLeader,Department Head,i18n_en,,,1,supervisor,1.70E+12,,0,
3840,3840,user.export.loginIP,User Login IP,i18n_en,,,1,supervisor,1.70E+12,,0,
3841,3841,user.export.loginDate,User Login Time,i18n_en,,,1,supervisor,1.70E+12,,0,
3842,3842,user.noData,No accessible user data!,i18n_en,,,1,supervisor,1.70E+12,,0,
3843,3843,user.statusEq,The change status is equal to the old value!,i18n_en,,,1,supervisor,1.70E+12,,0,
3844,3844,user.errPasswdOld,"Change password failed, old password is wrong",i18n_en,,,1,supervisor,1.70E+12,,0,
3845,3845,user.errPasswdEqOld,New password cannot be the same as the old one,i18n_en,,,1,supervisor,1.70E+12,,0,
3846,3846,user.errPasswd,"Login password contains at least upper and lower case letters, numbers, special symbols, and not less than 6 digits.",i18n_en,,,1,supervisor,1.70E+12,,0,
3847,3847,user.errEmailFormat,"Failed to operate user [{name}], mailbox format error",i18n_en,,,1,supervisor,1.70E+12,,0,
3848,3848,user.errEmailExists,"Failed to operate user [{name}], mailbox already exists.",i18n_en,,,1,supervisor,1.70E+12,,0,
3849,3849,user.errPhoneFormat,"Failed to operate user [{name}], cell phone number format is wrong.",i18n_en,,,1,supervisor,1.70E+12,,0,
3850,3850,user.errPhoneExists,"Failed to operate user [{name}], cell phone number already exists.",i18n_en,,,1,supervisor,1.70E+12,,0,
3851,3851,user.errNameExists,"Failed to operate user [{name}], login account already exists.",i18n_en,,,1,supervisor,1.70E+12,,0,
3852,3852,user.import.mustItem,"Required list item in form, {text}",i18n_en,,,1,supervisor,1.70E+12,,0,
3853,3853,user.import.phoneExist,User ID: {id} cell phone number {phone} Existing,i18n_en,,,1,supervisor,1.70E+12,,0,
3854,3854,user.import.phoneFormat,User ID: {id} cell phone number {phone} Wrong format,i18n_en,,,1,supervisor,1.70E+12,,0,
3855,3855,user.import.emailExist,User ID: {id} User Email: {email} Existing,i18n_en,,,1,supervisor,1.70E+12,,0,
3856,3856,user.import.emailFormat,User ID: {id} Email: {email} Wrong Format,i18n_en,,,1,supervisor,1.70E+12,,0,
3857,3857,user.import.success,User ID:{id} Login name:{name} Imported successfully!,i18n_en,,,1,supervisor,1.70E+12,,0,
3858,3858,user.import.fail,User ID: {id} Login name: {name} Import failed,i18n_en,,,1,supervisor,1.70E+12,,0,
3859,3859,user.import.successUpdate,User ID: {id} Login name: {name} Update success,i18n_en,,,1,supervisor,1.70E+12,,0,
3860,3860,user.import.failUpdate,User ID: {id} Login Name: {name} Update Failed,i18n_en,,,1,supervisor,1.70E+12,,0,
3861,3861,user.import.failTip,"Sorry, the import failed! A total of {num} entries were not formatted correctly, the error is below:",i18n_en,,,1,supervisor,1.70E+12,,0,
3862,3862,user.import.successTip,"Congratulations, the data has been imported successfully! There are {num} entries with the following data:",i18n_en,,,1,supervisor,1.70E+12,,0,
3900,3900,app.common.err403,Unauthorized access {method} {requestURI},i18n_en,,,1,supervisor,1.70E+12,,0,
3901,3901,app.common.err401,Invalid authorization,i18n_en,,,1,supervisor,1.70E+12,,0,
3902,3902,app.common.err400,Parameter error,i18n_en,,,1,supervisor,1.70E+12,,0,
3903,3903,app.common.exportEmpty,Export data record is empty,i18n_en,,,1,supervisor,1.70E+12,,0,
3904,3904,app.common.errOperateAdmin,Built-in users are not allowed to operate,i18n_en,,,1,supervisor,1.70E+12,,0,
3905,3905,app.common.errOperateRole,Built-in roles are not allowed to be operated,i18n_en,,,1,supervisor,1.70E+12,,0,
3906,3906,app.common.deleteSuccess,Deleted successfully: {num},i18n_en,,,1,supervisor,1.70E+12,,0,
3907,3907,app.common.loginSuccess,Login Success,i18n_en,,,1,supervisor,1.70E+12,,0,
3908,3908,app.common.logoutSuccess,Logout Successful,i18n_en,,,1,supervisor,1.70E+12,,0,
3909,3909,app.common.errUnlock,The user is not locked,i18n_en,,,1,supervisor,1.70E+12,,0,
3910,3910,app.common.noLoginUser,Invalid login user information,i18n_en,,,1,supervisor,1.70E+12,,0,
3911,3911,app.common.rateLimitTip,"Access too often, please try again later",i18n_en,,,1,supervisor,1.70E+12,,0,
3912,3912,log.operate.export.id,Operation Number,i18n_en,,,1,supervisor,1.70E+12,,0,
3913,3913,log.operate.export.title,Module Name,i18n_en,,,1,supervisor,1.70E+12,,0,
3914,3914,log.operate.export.businessType,Operation Type,i18n_en,,,1,supervisor,1.70E+12,,0,
3915,3915,log.operate.export.method,Operation Method,i18n_en,,,1,supervisor,1.70E+12,,0,
3916,3916,log.operate.export.requestMethod,Request Method ,i18n_en,,,1,supervisor,1.70E+12,,0,
3917,3917,log.operate.export.operatorType,Operation Type,i18n_en,,,1,supervisor,1.70E+12,,0,
3918,3918,log.operate.export.operName,Operator,i18n_en,,,1,supervisor,1.70E+12,,0,
3919,3919,log.operate.export.deptName,Operator's department name,i18n_en,,,1,supervisor,1.70E+12,,0,
3920,3920,log.operate.export.url,Request Link Address,i18n_en,,,1,supervisor,1.70E+12,,0,
3921,3921,log.operate.export.ip,Requesting Host ,i18n_en,,,1,supervisor,1.70E+12,,0,
3922,3922,log.operate.export.location,Request Address,i18n_en,,,1,supervisor,1.70E+12,,0,
3923,3923,log.operate.export.param,Request Parameters,i18n_en,,,1,supervisor,1.70E+12,,0,
3924,3924,log.operate.export.msg,Operation Information,i18n_en,,,1,supervisor,1.70E+12,,0,
3925,3925,log.operate.export.status,Operation status,i18n_en,,,1,supervisor,1.70E+12,,0,
3926,3926,log.operate.export.costTime,Consumption time (ms),i18n_en,,,1,supervisor,1.70E+12,,0,
3927,3927,log.operate.export.operTime,Operation time,i18n_en,,,1,supervisor,1.70E+12,,0,
3928,3928,log.login.export.id,Record number,i18n_en,,,1,supervisor,1.70E+12,,0,
3929,3929,log.login.export.userName,Login Account,i18n_en,,,1,supervisor,1.70E+12,,0,
3930,3930,log.login.export.status,Login Status,i18n_en,,,1,supervisor,1.70E+12,,0,
3931,3931,log.login.export.ip,Login Address,i18n_en,,,1,supervisor,1.70E+12,,0,
3932,3932,log.login.export.location,Login Location,i18n_en,,,1,supervisor,1.70E+12,,0,
3933,3933,log.login.export.browser,Browser,i18n_en,,,1,supervisor,1.70E+12,,0,
3934,3934,log.login.export.os,Operating System,i18n_en,,,1,supervisor,1.70E+12,,0,
3935,3935,log.login.export.msg,Login Information,i18n_en,,,1,supervisor,1.70E+12,,0,
3936,3936,log.login.export.time,Login Time,i18n_en,,,1,supervisor,1.70E+12,,0,
3937,3937,trace.tcpdump.noData,Can't find {type} {id} information of the corresponding network element.,i18n_en,,,1,supervisor,1.70E+12,,0,
3938,3938,register.errUsername,"The account number cannot start with a number, but can contain upper and lower case letters, numbers, and not less than 5 digits.",i18n_en,,,1,supervisor,1.70E+12,,0,
3939,3939,register.errPasswd,"The password must contain at least 6 upper and lower case letters, numbers, and special symbols.",i18n_en,,,1,supervisor,1.70E+12,,0,
3940,3940,register.errPasswdNotEq,User confirms password inconsistency,i18n_en,,,1,supervisor,1.70E+12,,0,
3941,3941,register.success,Successful registration,i18n_en,,,1,supervisor,1.70E+12,,0,
3942,3942,register.successMsg,{name} Register Successful {id},i18n_en,,,1,supervisor,1.70E+12,,0,
3943,3943,log.operate.title.sysJobLog,Scheduling Task Logs,i18n_en,,,1,supervisor,1.70E+12,,0,
3944,3944,log.operate.title.sysJob,Scheduling Tasks,i18n_en,,,1,supervisor,1.70E+12,,0,
3945,3945,log.operate.title.tcpdump,Signaling Capture,i18n_en,,,1,supervisor,1.70E+12,,0,
3946,3946,log.operate.title.sysConfig,Parameter Configuration,i18n_en,,,1,supervisor,1.70E+12,,0,
3947,3947,log.operate.title.sysDept,Sector,i18n_en,,,1,supervisor,1.70E+12,,0,
3948,3948,log.operate.title.sysDictData,Dictionary Data,i18n_en,,,1,supervisor,1.70E+12,,0,
3949,3949,log.operate.title.sysDictType,Dictionary type,i18n_en,,,1,supervisor,1.70E+12,,0,
3950,3950,log.operate.title.sysMenu,Menu,i18n_en,,,1,supervisor,1.70E+12,,0,
3951,3951,log.operate.title.sysPost,Positions,i18n_en,,,1,supervisor,1.70E+12,,0,
3952,3952,log.operate.title.sysProfile,Personal Information,i18n_en,,,1,supervisor,1.70E+12,,0,
3953,3953,log.operate.title.sysProfileAvatar,Personal avatar,i18n_en,,,1,supervisor,1.70E+12,,0,
3954,3954,log.operate.title.sysRole,Roles,i18n_en,,,1,supervisor,1.70E+12,,0,
3955,3955,log.operate.title.sysUser,User,i18n_en,,,1,supervisor,1.70E+12,,0,
3956,3956,log.operate.title.sysLogOper,Operation Logging,i18n_en,,,1,supervisor,1.70E+12,,0,
3957,3957,log.operate.title.sysLogLogin,Operation Logging,i18n_en,,,1,supervisor,1.70E+12,,0,
3958,3958,login.errNameOrPasswd,User does not exist or password is wrong,i18n_en,,,1,supervisor,1.70E+12,,0,
3959,3959,login.errDelFlag,"Sorry, your account has been deleted",i18n_en,,,1,supervisor,1.70E+12,,0,
3960,3960,login.errStatus,"Sorry, your account has been disabled",i18n_en,,,1,supervisor,1.70E+12,,0,
3961,3961,login.errRetryPasswd,"Password was entered incorrectly several times, account has been locked",i18n_en,,,1,supervisor,1.70E+12,,0,
3962,3962,captcha.err,Captcha Error,i18n_en,,,1,supervisor,1.70E+12,,0,
3963,3963,captcha.errValid,Captcha is invalid,i18n_en,,,1,supervisor,1.70E+12,,0,
3964,3964,app.common.noUaOsBrowser,Unknown Unknown,i18n_en,,,1,supervisor,1.70E+12,,0,
3965,3965,app.common.noIPregion,Intranet,i18n_en,,,1,supervisor,1.70E+12,,0,
3966,3966,app.common.unknown,Unknown,i18n_en,,,1,supervisor,1.70E+12,,0,
3967,3967,app.common.noNEInfo,No matching network element information found,i18n_en,,,1,supervisor,1.70E+12,,0,
3968,3968,ne.udm.errImportUserAuthFileFormat,"Please upload a file in the format of. csv or. txt. English comma separated txt format: imsi, ki, algo, amf, opc",i18n_en,,,1,supervisor,1.70E+12,,0,
3969,3969,ne.udm.errExportType,Export file types support CSV and txt,i18n_en,,,1,supervisor,1.70E+12,,0,
3970,3970,ne.udm.errImportUserSubFileFormat,"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",i18n_en,,,1,supervisor,1.70E+12,,0,
3971,3971,log.operate.title.udmAuth,UDM Authentication User,i18n_en,,,1,supervisor,1.70E+12,,0,
3972,3972,log.operate.title.udmSub,UDM Subscribers,i18n_en,,,1,supervisor,1.70E+12,,0,
3973,3973,dictType.active_alarm_type,Event Alarm Types,i18n_en,,,1,supervisor,1.70E+12,,0,
3974,3974,dictType.active_alarm_type_remark,List of Active Alarm Types,i18n_en,,,1,supervisor,1.70E+12,,0,
3975,3975,dictData.active_alarm_type.communication,Communication Alarm,i18n_en,,,1,supervisor,1.70E+12,,0,
3976,3976,dictData.active_alarm_type.equipment,Equipment Alarm,i18n_en,,,1,supervisor,1.70E+12,,0,
3977,3977,dictData.active_alarm_type.processing,Processing Failure Alarm,i18n_en,,,1,supervisor,1.70E+12,,0,
3978,3978,dictData.active_alarm_type.environmental,Environmental Alarm,i18n_en,,,1,supervisor,1.70E+12,,0,
3979,3979,dictData.active_alarm_type.qualityOfService,Quality of Service Alarm,i18n_en,,,1,supervisor,1.70E+12,,0,
3980,3980,dictType.active_clear_type,Alarm Clearing Types,i18n_en,,,1,supervisor,1.70E+12,,0,
3981,3981,dictType.active_clear_type_remark,List of Alarm Clearing Types,i18n_en,,,1,supervisor,1.70E+12,,0,
3982,3982,dictData.active_clear_type.notCleared,Not cleared,i18n_en,,,1,supervisor,1.70E+12,,0,
3983,3983,dictData.active_clear_type.hand,Manually cleared,i18n_en,,,1,supervisor,1.70E+12,,0,
3984,3984,dictData.active_clear_type.auto,Automatically cleared,i18n_en,,,1,supervisor,1.70E+12,,0,
3985,3985,dictType.active_ack_state,Alarm Acknowledgement Types,i18n_en,,,1,supervisor,1.70E+12,,0,
3986,3986,dictType.active_ack_state_remark,Alarm Acknowledgement Type List,i18n_en,,,1,supervisor,1.70E+12,,0,
3987,3987,dictData.active_ack_state.unconfirmed,Not Confirm,i18n_en,,,1,supervisor,1.70E+12,,0,
3988,3988,dictData.active_ack_state.confirmed,Confirm,i18n_en,,,1,supervisor,1.70E+12,,0,
3989,3989,dictType.active_alarm_severity,Severity,i18n_en,,,1,supervisor,1.70E+12,,0,
3990,3990,dictType.active_alarm_severity_remark,Severity List,i18n_en,,,1,supervisor,1.70E+12,,0,
3991,3991,dictData.active_alarm_severity.critical,Critical,i18n_en,,,1,supervisor,1.70E+12,,0,
3992,3992,dictData.active_alarm_severity.major,Major,i18n_en,,,1,supervisor,1.70E+12,,0,
3993,3993,dictData.active_alarm_severity.minor,Minor,i18n_en,,,1,supervisor,1.70E+12,,0,
3994,3994,dictData.active_alarm_severity.warning,Warning,i18n_en,,,1,supervisor,1.70E+12,,0,
3995,3995,dictData.active_alarm_severity.event,Event,i18n_en,,,1,supervisor,1.70E+12,,0,
3996,3996,config.sys.officialUrl,System Settings - Official Website Links,i18n_en,,,1,supervisor,1.70E+12,,0,
3997,3997,config.sys.helpDoc,System Settings-System Documentation,i18n_en,,,1,supervisor,1.70E+12,,0,
3998,3998,config.sys.officialUrlRemark,Default no address with # sign,i18n_en,,,1,supervisor,1.70E+12,,0,
3999,3999,config.sys.helpDocRemark,"Static file directory address, use {language} to distinguish language files",i18n_en,,,1,supervisor,1.70E+12,,0,
4000,4000,log.operate.title.neAction,Network Element Processing,i18n_en,,,1,supervisor,1.70E+12,,0,
4001,4001,log.operate.title.helpDoc,System Usage Documentation,i18n_en,,,1,supervisor,1.70E+12,,0,
4002,4002,menu.ueUser.n3iwf,N3IWF Online User,i18n_en,,,1,supervisor,1.70E+12,,0,
4003,4003,menu.ueUser.pcf,User PCC Information,i18n_en,,,1,supervisor,1.70E+12,,0,
4004,4004,menu.system.user.editRole,Modifying user roles,i18n_en,,,1,supervisor,1.70E+12,,0,
4005,4005,config.sys.i18nOpen,Internationalization Switching,i18n_en,,,1,supervisor,1.70E+12,,0,
4006,4006,config.sys.i18nDefault,Internationalization Default Language,i18n_en,,,1,supervisor,1.70E+12,,0,
4007,4007,user.export.role,UserRole,i18n_en,,,1,supervisor,1.70E+12,,0,
4008,4008,menu.system.setting.i18n,Internationalization Switch,i18n_en,,,1,supervisor,1.70E+12,,0,
4009,4009,menu.system.setting.i18nRemark,Internationalized multilingual switching options,i18n_en,,,1,supervisor,1.70E+12,,0,
4010,4010,dictType.index_status,Home Status,i18n_en,,,1,supervisor,1.70E+12,,0,
4011,4011,dictType.index_status_remark,Network element status colors on the home page,i18n_en,,,1,supervisor,1.70E+12,,0,
4012,4012,dictType.index_status.normal,Normal,i18n_en,,,1,supervisor,1.70E+12,,0,
4013,4013,dictType.index_status.abnormal,Abnormal,i18n_en,,,1,supervisor,1.70E+12,,0,
4014,4014,menu.log.neFile,NE Log File,i18n_en,,,1,supervisor,1.70E+12,,0,
4015,4015,job.deleteExpiredNeStateRecord,Delete Expired NE State Record,i18n_en,,,1,supervisor,1.70E+12,,0,
4016,4016,job.deleteExpiredNeStateRecordRemark,Delete expired NE state records regularly and keep them for {duration} days by default.,i18n_en,,,1,supervisor,1.70E+12,,0,
4017,4017,job.getStateFromNE,Get state from NEs,i18n_en,,,1,supervisor,1.70E+12,,0,
4018,4018,job.getStateFromNERemark,Get state information from all NEs,i18n_en,,,1,supervisor,1.70E+12,,0,
4019,4019,job.genNeStateAlarm,Network Element Health Check,i18n_en,,,1,supervisor,1.70E+12,,0,
4020,4020,job.genNeStateAlarmRemark,"Health status inspection of network elements, generating alarms in case of abnormalities.",i18n_en,,,1,supervisor,1.70E+12,,0,
4021,4021,menu.neUser.nssf,NSSF Subscription Info,i18n_en,,,1,supervisor,1.70E+12,,0,
4022,4022,menu.neUser.nssfAmf,NSSF Available AMFs,i18n_en,,,1,supervisor,1.70E+12,,0,
4023,4023,menu.monitor.topology,Topology Info,i18n_en,,,1,supervisor,1.70E+12,,0,
4024,4024,menu.monitor.topologyBuild,Topological Graph Build,i18n_en,,,1,supervisor,1.70E+12,,0,
4025,4025,log.operate.title.chartGraph,Topological Graph,i18n_en,,,1,supervisor,1.70E+12,,1,
4026,4026,menu.monitor.topologyArchitecture,NE System Topology,i18n_en,,,1,supervisor,1.70E+12,,0,
4027,4027,menu.alarm,Alarm,i18n_en,,,1,supervisor,1.70E+12,,0,
4028,4028,menu.topology,Topology,i18n_en,,,1,supervisor,1.70E+12,,0,
4029,4029,config.sys.lockTime,System Settings - Screen Lock Timeout Duration,i18n_en,,,1,supervisor,1.70E+12,,0,
4030,4030,config.sys.lockTimeRemark,"Screen lock timeout duration when idle, in seconds.",i18n_en,,,1,supervisor,1.70E+12,,0,
4031,4031,sys.account.captchaType,Account Self Service - Captcha Type,i18n_en,,,1,supervisor,1.70E+12,,0,
4032,4032,sys.account.captchaTypeRemark,"Using CAPTCHA types (math numeric calculation, char character validation)",i18n_en,,,1,supervisor,1.70E+12,,0,
4033,4033,menu.dashboard,Dashboard,i18n_en,,,1,supervisor,1.70555E+12,,0,
4034,4034,menu.dashboard.overview,Overview,i18n_en,,,1,supervisor,1.70555E+12,,0,
4035,4035,menu.dashboard.cdr,CDR,i18n_en,,,1,supervisor,1.70555E+12,,0,
1 dict_code dict_sort dict_label dict_value dict_type tag_class tag_type status create_by create_time update_by update_time remark
2 3000 3000 i18n English i18n_en 1 supervisor 1.70E+12 0
3 3001 3001 hello Hello i18n_en 1 supervisor 1.70E+12 0
4 3002 3002 menu.system System i18n_en 1 supervisor 1.70E+12 0
5 3003 3003 menu.monitor Monitor i18n_en 1 supervisor 1.70E+12 0
6 3004 3004 menu.tools Tools i18n_en 1 supervisor 1.70E+12 0
7 3005 3005 menu.config Configuration i18n_en 1 supervisor 1.70E+12 0
8 3006 3006 menu.ueUser UE i18n_en 1 supervisor 1.70E+12 0
9 3007 3007 menu.systemRemark System Management Catalog i18n_en 1 supervisor 1.70E+12 0
10 3008 3008 menu.monitorRemark System Monitor Catalog i18n_en 1 supervisor 1.70E+12 0
11 3009 3009 menu.toolsRemark System Tools Catalog i18n_en 1 supervisor 1.70E+12 0
12 3010 3010 menu.configRemark OMC Configuration Management Catalog i18n_en 1 supervisor 1.70E+12 0
13 3011 3011 menu.ueUserRemark Network Element Terminal Information Catalog i18n_en 1 supervisor 1.70E+12 0
14 3012 3012 menu.security.user User Management i18n_en 1 supervisor 1.70E+12 0
15 3013 3013 menu.security.role Role Management i18n_en 1 supervisor 1.70E+12 0
16 3014 3014 menu.security.roleUser Assigning Roles i18n_en 1 supervisor 1.70E+12 0
17 3015 3015 menu.system.menu Menu Management i18n_en 1 supervisor 1.70E+12 0
18 3016 3016 menu.security.dept Department Management i18n_en 1 supervisor 1.70E+12 0
19 3017 3017 menu.security.post Position Management i18n_en 1 supervisor 1.70E+12 0
20 3018 3018 menu.system.dictType Dictionary Management i18n_en 1 supervisor 1.70E+12 0
21 3019 3019 menu.system.dictData Dictionary Data i18n_en 1 supervisor 1.70E+12 0
22 3020 3020 menu.system.paramSet Parameter Settings i18n_en 1 supervisor 1.70E+12 0
23 3021 3021 menu.system.systemLog System Log i18n_en 1 supervisor 1.70E+12 0
24 3022 3022 menu.system.systemInfo System Information i18n_en 1 supervisor 1.70E+12 0
25 3023 3023 menu.system.cacheInfo Cache Information i18n_en 1 supervisor 1.70E+12 0
26 3024 3024 menu.system.cache Cache Management i18n_en 1 supervisor 1.70E+12 0
27 3025 3025 menu.security.onlineUser Online Users i18n_en 1 supervisor 1.70E+12 0
28 3026 3026 menu.system.job Scheduling Tasks i18n_en 1 supervisor 1.70E+12 0
29 3027 3027 menu.system.jobLog Scheduling Logs i18n_en 1 supervisor 1.70E+12 0
30 3028 3028 menu.tools.help Help Documentation i18n_en 1 supervisor 1.70E+12 0
31 3029 3029 menu.log.operat Operation logs i18n_en 1 supervisor 1.70E+12 0
32 3030 3030 menu.log.login Security logs i18n_en 1 supervisor 1.70E+12 0
33 3031 3031 menu.security.userRemark User Management Menu i18n_en 1 supervisor 1.70E+12 0
34 3032 3032 menu.security.roleRemark Role Management Menu i18n_en 1 supervisor 1.70E+12 0
35 3033 3033 menu.security.roleUserRemark Assign Roles Embedded Hidden Menu i18n_en 1 supervisor 1.70E+12 0
36 3034 3034 menu.system.menuRemark Menu Management Menu i18n_en 1 supervisor 1.70E+12 0
37 3035 3035 menu.security.deptRemark Department management menu i18n_en 1 supervisor 1.70E+12 0
38 3036 3036 menu.security.postRemark Job Management Menu i18n_en 1 supervisor 1.70E+12 0
39 3037 3037 menu.system.dictTypeRemark Dictionary management menu i18n_en 1 supervisor 1.70E+12 0
40 3038 3038 menu.system.dictDataRemark Dictionary data embedded hidden menu i18n_en 1 supervisor 1.70E+12 0
41 3039 3039 menu.system.paramSetRemark Parameter setting menu i18n_en 1 supervisor 1.70E+12 0
42 3040 3040 menu.system.systemLogRemark System Log Catalog i18n_en 1 supervisor 1.70E+12 0
43 3041 3041 menu.system.systemInfoRemark System information menu i18n_en 1 supervisor 1.70E+12 0
44 3042 3042 menu.system.cacheInfoRemark Cache Information Menu i18n_en 1 supervisor 1.70E+12 0
45 3043 3043 menu.system.cacheRemark Cache List Menu i18n_en 1 supervisor 1.70E+12 0
46 3044 3044 menu.security.onlineUserRemark Online User Menu i18n_en 1 supervisor 1.70E+12 0
47 3045 3045 menu.system.jobRemark Scheduling Tasks menu i18n_en 1 supervisor 1.70E+12 0
48 3046 3046 menu.system.jobLogRemark Scheduling Log Embedded Hidden Menu i18n_en 1 supervisor 1.70E+12 0
49 3047 3047 menu.tools.helpRemark Help file menu i18n_en 1 supervisor 1.70E+12 0
50 3048 3048 menu.log.operatRemark Operation log menu i18n_en 1 supervisor 1.70E+12 0
51 3049 3049 menu.log.loginRemark Login log menu i18n_en 1 supervisor 1.70E+12 0
52 3050 3050 menu.common.query Inquiry i18n_en 1 supervisor 1.70E+12 0
53 3051 3051 menu.common.add Add i18n_en 1 supervisor 1.70E+12 0
54 3052 3052 menu.common.edit Modify i18n_en 1 supervisor 1.70E+12 0
55 3053 3053 menu.common.delete Delete i18n_en 1 supervisor 1.70E+12 0
56 3054 3054 menu.common.export Export i18n_en 1 supervisor 1.70E+12 0
57 3055 3055 menu.common.import Import i18n_en 1 supervisor 1.70E+12 0
58 3056 3056 menu.common.reset Reset i18n_en 1 supervisor 1.70E+12 0
59 3057 3057 menu.common.unlock Account Unlock i18n_en 1 supervisor 1.70E+12 0
60 3058 3058 menu.forcedQuit.batch Batch Undo i18n_en 1 supervisor 1.70E+12 0
61 3059 3059 menu.forcedQuit.single Individual Forced Retirement i18n_en 1 supervisor 1.70E+12 0
62 3060 3060 menu.ueUser.authUDM UDM Authentication i18n_en 1 supervisor 1.70E+12 0
63 3061 3061 menu.ueUser.subUDM UDM Subscribers i18n_en 1 supervisor 1.70E+12 0
64 3062 3062 menu.ueUser.authUDMRemark UDM Authentication Menu i18n_en 1 supervisor 1.70E+12 0
65 3063 3063 menu.ueUser.subUDMRemark UDM Subscriber Menu i18n_en 1 supervisor 1.70E+12 0
66 3064 3064 menu.config.neManage NE Management i18n_en 1 supervisor 1.70E+12 0
67 3065 3065 menu.config.configNE Parameter Configuration Original i18n_en 1 supervisor 1.70E+12 0
68 3066 3066 menu.config.neManageRemark Network Element Management Menu i18n_en 1 supervisor 1.70E+12 0
69 3067 3067 menu.config.configNERemark Parameter Configuration Menu i18n_en 1 supervisor 1.70E+12 0
70 3068 3068 menu.config.backupManage Backup Management i18n_en 1 supervisor 1.70E+12 0
71 3069 3069 menu.config.softwareManage Software Management i18n_en 1 supervisor 1.70E+12 0
72 3070 3070 menu.ueUser.onlineIMS IMS Online Users i18n_en 1 supervisor 1.70E+12 0
73 3071 3071 menu.ueUser.onlineUE UE Online Information i18n_en 1 supervisor 1.70E+12 0
74 3072 3072 menu.ueUser.base5G Radio Information i18n_en 1 supervisor 1.70E+12 0
75 3073 3073 menu.trace Trace i18n_en 1 supervisor 1.70E+12 0
76 3074 3074 menu.trace.task Trace Tasks i18n_en 1 supervisor 1.70E+12 0
77 3075 3075 menu.trace.analysis Signaling Analysis i18n_en 1 supervisor 1.70E+12 0
78 3076 3076 menu.trace.pcap Signaling Capture i18n_en 1 supervisor 1.70E+12 0
79 3077 3077 menu.fault Monitor i18n_en 1 supervisor 1.70E+12 0
80 3078 3078 menu.config.backupManageRemark Backup Management Menu i18n_en 1 supervisor 1.70E+12 0
81 3079 3079 menu.config.softwareManageRemark Software Management Menu i18n_en 1 supervisor 1.70E+12 0
82 3080 3080 menu.ueUser.onlineIMSRemark IMS Online User Menu i18n_en 1 supervisor 1.70E+12 0
83 3081 3081 menu.ueUser.onlineUERemark UE Online Information Menu i18n_en 1 supervisor 1.70E+12 0
84 3082 3082 menu.ueUser.base5GRemark 5G Base Station Information Menu i18n_en 1 supervisor 1.70E+12 0
85 3083 3083 menu.traceRemark Tracking Management Menu i18n_en 1 supervisor 1.70E+12 0
86 3084 3084 menu.trace.taskRemark Tracking Task Menu i18n_en 1 supervisor 1.70E+12 0
87 3085 3085 menu.trace.analysisRemark Signaling Analysis Menu i18n_en 1 supervisor 1.70E+12 0
88 3086 3086 menu.trace.pcapRemark Signaling Capture Menu i18n_en 1 supervisor 1.70E+12 0
89 3087 3087 menu.faultRemark Fault Management Catalog i18n_en 1 supervisor 1.70E+12 0
90 3088 3088 menu.fault.active Active Alarms i18n_en 1 supervisor 1.70E+12 0
91 3089 3089 menu.log Logs i18n_en 1 supervisor 1.70E+12 0
92 3090 3090 menu.log.operatOld Operation Logs (old) i18n_en 1 supervisor 1.70E+12 0
93 3091 3091 menu.log.mml MML Logs i18n_en 1 supervisor 1.70E+12 0
94 3092 3092 menu.log.alarm Alarm Logs i18n_en 1 supervisor 1.70E+12 0
95 3093 3093 menu.log.securityOld Security Logs (old) i18n_en 1 supervisor 1.70E+12 0
96 3094 3094 menu.log.forwarding Alarm Forwarding Logs i18n_en 1 supervisor 1.70E+12 0
97 3095 3095 menu.log.set Log Settings i18n_en 1 supervisor 1.70E+12 0
98 3096 3096 menu.monitor.sessionUser User Sessions i18n_en 1 supervisor 1.70E+12 0
99 3097 3097 menu.fault.history Historical Alarms i18n_en 1 supervisor 1.70E+12 0
100 3098 3098 menu.fault.set Settings i18n_en 1 supervisor 1.70E+12 0
101 3099 3099 menu.perf Performance i18n_en 1 supervisor 1.70E+12 0
102 3100 3100 menu.fault.activemRemark Active Alarm Menu i18n_en 1 supervisor 1.70E+12 0
103 3101 3101 menu.logRemark Log Management Catalog i18n_en 1 supervisor 1.70E+12 0
104 3102 3102 menu.log.operatOldRemark Operation log old layui menu i18n_en 1 supervisor 1.70E+12 0
105 3103 3103 menu.log.mmlRemark Operation MML Log i18n_en 1 supervisor 1.70E+12 0
106 3104 3104 menu.log.alarmRemark Alarm Log Menu i18n_en 1 supervisor 1.70E+12 0
107 3105 3105 menu.log.securityOldRemark Security Log Old Layui Menu i18n_en 1 supervisor 1.70E+12 0
108 3106 3106 menu.log.forwardingRemark Alarm forward log menu i18n_en 1 supervisor 1.70E+12 0
109 3107 3107 menu.log.setRemark Log Settings menu i18n_en 1 supervisor 1.70E+12 0
110 3108 3108 menu.monitor.sessionUserRemark User Session Old Layui Menu i18n_en 1 supervisor 1.70E+12 0
111 3109 3109 menu.fault.historyRemark Alarm history menu i18n_en 1 supervisor 1.70E+12 0
112 3110 3110 menu.fault.setRemark Fault General Setup Menu i18n_en 1 supervisor 1.70E+12 0
113 3111 3111 menu.perfRemark Performance Catalog i18n_en 1 supervisor 1.70E+12 0
114 3112 3112 menu.perf.task Performance Tasks i18n_en 1 supervisor 1.70E+12 0
115 3113 3113 menu.perf.data Performance Data i18n_en 1 supervisor 1.70E+12 0
116 3114 3114 menu.perf.report Performance Reports i18n_en 1 supervisor 1.70E+12 0
117 3115 3115 menu.perf.threshold Performance Thresholds i18n_en 1 supervisor 1.70E+12 0
118 3116 3116 menu.perf.kpi Key Performance Indicators i18n_en 1 supervisor 1.70E+12 0
119 3117 3117 menu.perf.customTarget Custom Metrics i18n_en 1 supervisor 1.70E+12 0
120 3118 3118 menu.perf.set Performance General Settings i18n_en 1 supervisor 1.70E+12 0
121 3119 3119 menu.mml MML i18n_en 1 supervisor 1.70E+12 0
122 3120 3120 menu.mml.ne NE Operation i18n_en 1 supervisor 1.70E+12 0
123 3121 3121 menu.mml.udm UDM Operation i18n_en 1 supervisor 1.70E+12 0
124 3122 3122 menu.mml.set MML Settings i18n_en 1 supervisor 1.70E+12 0
125 3123 3123 menu.mml.omc OMC Operation i18n_en 1 supervisor 1.70E+12 0
126 3124 3124 menu.perf.taskRemark Task Management Menu i18n_en 1 supervisor 1.70E+12 0
127 3125 3125 menu.perf.dataRemark Performance Data Menu i18n_en 1 supervisor 1.70E+12 0
128 3126 3126 menu.perf.reportRemark Performance Report Menu i18n_en 1 supervisor 1.70E+12 0
129 3127 3127 menu.perf.thresholdRemark Performance Threshold Menu i18n_en 1 supervisor 1.70E+12 0
130 3128 3128 menu.perf.kpiRemark Key Performance Indicator Menu i18n_en 1 supervisor 1.70E+12 0
131 3129 3129 menu.perf.customTargetRemark Custom Metrics Menu i18n_en 1 supervisor 1.70E+12 0
132 3130 3130 menu.perf.setRemark Performance General Settings Menu i18n_en 1 supervisor 1.70E+12 0
133 3131 3131 menu.mmlRemark MML Management Catalog i18n_en 1 supervisor 1.70E+12 0
134 3132 3132 menu.mml.neRemark Network Element Operations Menu i18n_en 1 supervisor 1.70E+12 0
135 3133 3133 menu.mml.udmRemark Network Element UDM User Data Menu i18n_en 1 supervisor 1.70E+12 0
136 3134 3134 menu.mml.setRemark MML Setup Menu i18n_en 1 supervisor 1.70E+12 0
137 3135 3135 menu.mml.omcRemark OMC Operation Menu i18n_en 1 supervisor 1.70E+12 0
138 3136 3136 menu.config.licenseManage License Management i18n_en 1 supervisor 1.70E+12 0
139 3137 3137 menu.security Security i18n_en 1 supervisor 1.70E+12 0
140 3138 3138 menu.system.systemSet System Settings i18n_en 1 supervisor 1.70E+12 0
141 3139 3139 menu.system.systemResource System Resources i18n_en 1 supervisor 1.70E+12 0
142 3140 3140 menu.config.configNEForm Parameter Configuration Form i18n_en 1 supervisor 1.70E+12 0
143 3141 3141 menu.config.configNETree Parameter Configuration Tree i18n_en 1 supervisor 1.70E+12 0
144 3142 3142 menu.config.configNETreeTable Parameter Configuration i18n_en 1 supervisor 1.70E+12 0
145 3143 3143 menu.config.licenseManageRemark License Management Menu i18n_en 1 supervisor 1.70E+12 0
146 3144 3144 menu.securityRemark Security Management Catalog i18n_en 1 supervisor 1.70E+12 0
147 3145 3145 menu.system.systemSetRemark System Settings Menu i18n_en 1 supervisor 1.70E+12 0
148 3146 3146 menu.system.systemResourceRemark System Resources cpu io network menu i18n_en 1 supervisor 1.70E+12 0
149 3147 3147 menu.config.configNEFormRemark Parameter Configuration Form Menu i18n_en 1 supervisor 1.70E+12 0
150 3148 3148 menu.config.configNETreeRemark Parameter Configuration Tree Menu i18n_en 1 supervisor 1.70E+12 0
151 3149 3149 menu.config.configNETreeTableRemark Configuring the TreeTable menu with parameters i18n_en 1 supervisor 1.70E+12 0
152 3150 3150 menu.noData There is no accessible menu data! i18n_en 1 supervisor 1.70E+12 0
153 3151 3151 menu.errNameExists Failed to operate menu [{name}], menu name already exists! i18n_en 1 supervisor 1.70E+12 0
154 3152 3152 menu.errPathExists Failed to operate menu [{name}], menu routing address already exists! i18n_en 1 supervisor 1.70E+12 0
155 3153 3153 menu.errFramePath Failed to manipulate menu [{name}], non-internal address should start with http(s):// i18n_en 1 supervisor 1.70E+12 0
156 3154 3154 menu.errParentStatus The parent menu is not enabled! i18n_en 1 supervisor 1.70E+12 0
157 3155 3155 menu.errHasChildUse Operation menu [{name}] failed, number of submenus in use exists: {num} i18n_en 1 supervisor 1.70E+12 0
158 3156 3156 menu.errHasRoleUse Operation menu [{name}] failed, number of roles the menu has been assigned to: {num} i18n_en 1 supervisor 1.70E+12 0
159 3400 3400 dictData.sex.un Not selected i18n_en 1 supervisor 1.70E+12 0
160 3401 3401 dictData.sex.male Male i18n_en 1 supervisor 1.70E+12 0
161 3402 3402 dictData.sex.female Female i18n_en 1 supervisor 1.70E+12 0
162 3403 3403 dictData.show Show i18n_en 1 supervisor 1.70E+12 0
163 3404 3404 dictData.hide Hide i18n_en 1 supervisor 1.70E+12 0
164 3405 3405 dictData.normal Active i18n_en 1 supervisor 1.70E+12 0
165 3406 3406 dictData.disable Inactive i18n_en 1 supervisor 1.70E+12 0
166 3407 3407 dictData.yes Yes i18n_en 1 supervisor 1.70E+12 0
167 3408 3408 dictData.no No i18n_en 1 supervisor 1.70E+12 0
168 3409 3409 dictData.success Successful i18n_en 1 supervisor 1.70E+12 0
169 3410 3410 dictData.fail Failed i18n_en 1 supervisor 1.70E+12 0
170 3411 3411 dictData.jobStatus.normal Active i18n_en 1 supervisor 1.70E+12 0
171 3412 3412 dictData.jobStatus.pause Inactive i18n_en 1 supervisor 1.70E+12 0
172 3413 3413 dictData.jobGroup.Default Default i18n_en 1 supervisor 1.70E+12 0
173 3414 3414 dictData.jobGroup.System System i18n_en 1 supervisor 1.70E+12 0
174 3415 3415 dictData.operType.other Other i18n_en 1 supervisor 1.70E+12 0
175 3416 3416 dictData.operType.add New i18n_en 1 supervisor 1.70E+12 0
176 3417 3417 dictData.operType.edit Modify i18n_en 1 supervisor 1.70E+12 0
177 3418 3418 dictData.operType.delete Delete i18n_en 1 supervisor 1.70E+12 0
178 3419 3419 dictData.operType.auth Authorization i18n_en 1 supervisor 1.70E+12 0
179 3420 3420 dictData.operType.export Export i18n_en 1 supervisor 1.70E+12 0
180 3421 3421 dictData.operType.import Import i18n_en 1 supervisor 1.70E+12 0
181 3422 3422 dictData.operType.forced quit Forced Retirement i18n_en 1 supervisor 1.70E+12 0
182 3423 3423 dictData.operType.clear Clear i18n_en 1 supervisor 1.70E+12 0
183 3424 3424 dictData.trace.interface Interface Tracing i18n_en 1 supervisor 1.70E+12 0
184 3425 3425 dictData.trace.device Device Tracing i18n_en 1 supervisor 1.70E+12 0
185 3426 3426 dictData.trace.user User Tracing i18n_en 1 supervisor 1.70E+12 0
186 3427 3427 dictData.logType.download Download i18n_en 1 supervisor 1.70E+12 0
187 3428 3428 dictData.logType.activation Activation i18n_en 1 supervisor 1.70E+12 0
188 3429 3429 dictData.logType.add New i18n_en 1 supervisor 1.70E+12 0
189 3430 3430 dictData.logType.other Other i18n_en 1 supervisor 1.70E+12 0
190 3431 3431 dictData.logType.back Rollback i18n_en 1 supervisor 1.70E+12 0
191 3432 3432 dictData.logType.delete Delete i18n_en 1 supervisor 1.70E+12 0
192 3433 3433 dictData.logType.distribute Assign i18n_en 1 supervisor 1.70E+12 0
193 3434 3434 dictData.logType.export Export i18n_en 1 supervisor 1.70E+12 0
194 3435 3435 dictData.logType.query Query i18n_en 1 supervisor 1.70E+12 0
195 3436 3436 dictData.logType.setup Setup i18n_en 1 supervisor 1.70E+12 0
196 3437 3437 dictData.logType.update Update i18n_en 1 supervisor 1.70E+12 0
197 3438 3438 dictData.logType.upload Upload i18n_en 1 supervisor 1.70E+12 0
198 3439 3439 dictData.logType.view View i18n_en 1 supervisor 1.70E+12 0
199 3440 3440 dictData.logType.login Login i18n_en 1 supervisor 1.70E+12 0
200 3441 3441 dictData.logType.logout Logout i18n_en 1 supervisor 1.70E+12 0
201 3442 3442 dictData.securityLogType.add New i18n_en 1 supervisor 1.70E+12 0
202 3443 3443 dictData.securityLogType.update Update i18n_en 1 supervisor 1.70E+12 0
203 3444 3444 dictData.securityLogType.delete Delete i18n_en 1 supervisor 1.70E+12 0
204 3445 3445 dictData.securityLogType.lock Locked i18n_en 1 supervisor 1.70E+12 0
205 3446 3446 dictData.securityLogType.unlock Unlock i18n_en 1 supervisor 1.70E+12 0
206 3447 3447 dictData.securityLogType.reset Reset i18n_en 1 supervisor 1.70E+12 0
207 3448 3448 dictData.securityLogType.deactivate Deactivate i18n_en 1 supervisor 1.70E+12 0
208 3449 3449 dictData.jobSaveLog.no No Record i18n_en 1 supervisor 1.70E+12 0
209 3450 3450 dictData.jobSaveLog.yes Recorded i18n_en 1 supervisor 1.70E+12 0
210 3451 3451 dictData.neVersionStatus.upload Uploaded i18n_en 1 supervisor 1.70E+12 0
211 3452 3452 dictData.neVersionStatus.inactive Inactivated i18n_en 1 supervisor 1.70E+12 0
212 3453 3453 dictData.neVersionStatus.active Activated i18n_en 1 supervisor 1.70E+12 0
213 3454 3454 dictData.alarmStatus.history Historical Alarm i18n_en 1 supervisor 1.70E+12 0
214 3455 3455 dictData.alarmStatus.active Active Alarm i18n_en 1 supervisor 1.70E+12 0
215 3456 3456 dictData.export.code Data Codes i18n_en 1 supervisor 1.70E+12 0
216 3457 3457 dictData.export.sort Data Sorting i18n_en 1 supervisor 1.70E+12 0
217 3458 3458 dictData.export.label Data Labeling i18n_en 1 supervisor 1.70E+12 0
218 3459 3459 dictData.export.value Data Key i18n_en 1 supervisor 1.70E+12 0
219 3460 3460 dictData.export.type Data Sorting i18n_en 1 supervisor 1.70E+12 0
220 3461 3461 dictData.export.status Data Status i18n_en 1 supervisor 1.70E+12 0
221 3462 3462 dictData.datascope.all All data permissions i18n_en 1 supervisor 1.70E+12 0
222 3463 3463 dictData.datascope.custom Customized Data Rights i18n_en 1 supervisor 1.70E+12 0
223 3464 3464 dictData.datascope.dept Departmental Data Permissions i18n_en 1 supervisor 1.70E+12 0
224 3465 3465 dictData.datascope.deptAndChid Department and below i18n_en 1 supervisor 1.70E+12 0
225 3466 3466 dictData.datascope.self Personal data access only i18n_en 1 supervisor 1.70E+12 0
226 3467 3467 dictData.noData There is no accessible dictionary code data! i18n_en 1 supervisor 1.70E+12 0
227 3468 3468 dictData.errLabelExists Failed to manipulate data [{name}], tag name already exists under this dictionary type! i18n_en 1 supervisor 1.70E+12 0
228 3500 3500 dictType.sys_user_sex User Gender i18n_en 1 supervisor 1.70E+12 0
229 3501 3501 dictType.sys_show_hide Menu Status i18n_en 1 supervisor 1.70E+12 0
230 3502 3502 dictType.sys_normal_disable System switches i18n_en 1 supervisor 1.70E+12 0
231 3503 3503 dictType.sys_job_status Task Status i18n_en 1 supervisor 1.70E+12 0
232 3504 3504 dictType.sys_job_group Task Grouping i18n_en 1 supervisor 1.70E+12 0
233 3505 3505 dictType.sys_yes_no System or not i18n_en 1 supervisor 1.70E+12 0
234 3506 3506 dictType.sys_oper_type Operation Type i18n_en 1 supervisor 1.70E+12 0
235 3507 3507 dictType.sys_common_status System Status i18n_en 1 supervisor 1.70E+12 0
236 3508 3508 dictType.trace_type Trace Types i18n_en 1 supervisor 1.70E+12 0
237 3509 3509 dictType.operation_log_type Operation Log Type i18n_en 1 supervisor 1.70E+12 0
238 3510 3510 dictType.alarm_status Alarm Log Type i18n_en 1 supervisor 1.70E+12 0
239 3511 3511 dictType.security_log_type Security Log Type i18n_en 1 supervisor 1.70E+12 0
240 3512 3512 dictType.ne_version_status Network element software version status i18n_en 1 supervisor 1.70E+12 0
241 3513 3513 dictType.i18n_en Multi-language - English i18n_en 1 supervisor 1.70E+12 0
242 3514 3514 dictType.i18n_zh Multi-language - Chinese i18n_en 1 supervisor 1.70E+12 0
243 3515 3515 dictType.sys_user_sex_remark User gender list i18n_en 1 supervisor 1.70E+12 0
244 3516 3516 dictType.sys_show_hide_remark Menu Status List i18n_en 1 supervisor 1.70E+12 0
245 3517 3517 dictType.sys_normal_disable_remark System switch list i18n_en 1 supervisor 1.70E+12 0
246 3518 3518 dictType.sys_job_status_remark Task Status List i18n_en 1 supervisor 1.70E+12 0
247 3519 3519 dictType.sys_job_group_remark Task Grouping List i18n_en 1 supervisor 1.70E+12 0
248 3520 3520 dictType.sys_yes_no_remark System whether list i18n_en 1 supervisor 1.70E+12 0
249 3521 3521 dictType.sys_oper_type_remark Operation type list i18n_en 1 supervisor 1.70E+12 0
250 3522 3522 dictType.sys_common_status_remark Login Status List i18n_en 1 supervisor 1.70E+12 0
251 3523 3523 dictType.trace_type_remark Trace Types i18n_en 1 supervisor 1.70E+12 0
252 3524 3524 dictType.operation_log_type_remark Operation log type i18n_en 1 supervisor 1.70E+12 0
253 3525 3525 dictType.alarm_status_remark alarm_status i18n_en 1 supervisor 1.70E+12 0
254 3526 3526 dictType.security_log_type_remark Security Log Type i18n_en 1 supervisor 1.70E+12 0
255 3527 3527 dictType.ne_version_status_remark Network element software version status i18n_en 1 supervisor 1.70E+12 0
256 3528 3528 dictType.i18n_en_remark Internationalization - English i18n_en 1 supervisor 1.70E+12 0
257 3529 3529 dictType.i18n_zh_remark Internationalization - Chinese i18n_en 1 supervisor 1.70E+12 0
258 3530 3530 dictType.export.id Dictionary Code i18n_en 1 supervisor 1.70E+12 0
259 3531 3531 dictType.export.name Dictionary Name i18n_en 1 supervisor 1.70E+12 0
260 3532 3532 dictType.export.type Dictionary Type i18n_en 1 supervisor 1.70E+12 0
261 3533 3533 dictType.export.status Dictionary Status i18n_en 1 supervisor 1.70E+12 0
262 3534 3534 dictType.sys_role_datascope System Role Data Range i18n_en 1 supervisor 1.70E+12 0
263 3535 3535 dictType.sys_role_datascope_remark System Role Data Range Mapping i18n_en 1 supervisor 1.70E+12 0
264 3536 3536 dictType.noData There is no accessible dictionary type data! i18n_en 1 supervisor 1.70E+12 0
265 3537 3537 dictType.errNameExists Failed to manipulate dictionary [{name}], dictionary name already exists! i18n_en 1 supervisor 1.70E+12 0
266 3538 3538 dictType.errTypeExists Failed to manipulate dictionary [{name}], dictionary type already exists! i18n_en 1 supervisor 1.70E+12 0
267 3600 3600 dept.root System Maintenance Department i18n_en 1 supervisor 1.70E+12 0
268 3601 3601 dept.root.item1 Operation and Maintenance Department One i18n_en 1 supervisor 1.70E+12 0
269 3602 3602 dept.noData There is no accessible department data! i18n_en 1 supervisor 1.70E+12 0
270 3603 3603 dept.errParentDelFlag The parent department [{name}] has been deleted and is not allowed to be added. i18n_en 1 supervisor 1.70E+12 0
271 3604 3604 dept.errParentStatus Parent department [{name}] is deactivated, additions are not allowed! i18n_en 1 supervisor 1.70E+12 0
272 3605 3605 dept.errNameExists Manipulate department [{name}] failed, department name already exists! i18n_en 1 supervisor 1.70E+12 0
273 3606 3606 dept.errParentID Failed to operate department [{name}], the parent department cannot be itself. i18n_en 1 supervisor 1.70E+12 0
274 3607 3607 dept.errHasChildUse Operation failed, the department contains undeactivated sub-departments number: {num} i18n_en 1 supervisor 1.70E+12 0
275 3608 3608 dept.errHasUserUse Deletion is not allowed, number of users the department has been assigned to: {num} i18n_en 1 supervisor 1.70E+12 0
276 3630 3630 config.sys.user.initPassword User Management-Account Initial Password i18n_en 1 supervisor 1.70E+12 0
277 3631 3631 config.sys.account.captchaEnabled Account self-help-Certification code switch i18n_en 1 supervisor 1.70E+12 0
278 3632 3632 config.sys.account.registerUser Account self-service-Whether to enable the user registration function i18n_en 1 supervisor 1.70E+12 0
279 3633 3633 config.sys.user.maxRetryCount User Management-Maximum number of password errors i18n_en 1 supervisor 1.70E+12 0
280 3634 3634 config.sys.user.lockTime User Management-Password Lock Time i18n_en 1 supervisor 1.70E+12 0
281 3635 3635 config.monitor.sysResource.storeDays Monitor-System Resources-Data retention time i18n_en 1 supervisor 1.70E+12 0
282 3636 3636 config.sys.logo.type System Settings-Logo Type i18n_en 1 supervisor 1.70E+12 0
283 3637 3637 config.sys.logo.filePathIcon System Settings-Logo File icon i18n_en 1 supervisor 1.70E+12 0
284 3638 3638 config.sys.logo.filePathBrand System Settings-Logo File Brand i18n_en 1 supervisor 1.70E+12 0
285 3639 3639 config.sys.loginBackground System Settings-Login Interface Background i18n_en 1 supervisor 1.70E+12 0
286 3640 3640 config.sys.title System Settings-System Name i18n_en 1 supervisor 1.70E+12 0
287 3641 3641 config.sys.copyright System Settings-Copyright Notice i18n_en 1 supervisor 1.70E+12 0
288 3642 3642 config.sys.user.initPasswordRemark Import user initialization password 123456 i18n_en 1 supervisor 1.70E+12 0
289 3643 3643 config.sys.account.captchaEnabledRemark Whether to enable the verification code function (true on, false off) i18n_en 1 supervisor 1.70E+12 0
290 3644 3644 config.sys.account.registerUserRemark Whether to enable the function of registered users (true on, false off) i18n_en 1 supervisor 1.70E+12 0
291 3645 3645 config.sys.user.maxRetryCountRemark Maximum number of password errors i18n_en 1 supervisor 1.70E+12 0
292 3646 3646 config.sys.user.lockTimeRemark Password lock time in minutes (default 10 minutes) i18n_en 1 supervisor 1.70E+12 0
293 3647 3647 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. i18n_en 1 supervisor 1.70E+12 0
294 3648 3648 config.sys.logo.typeRemark Full image: brand Small image: icon i18n_en 1 supervisor 1.70E+12 0
295 3649 3649 config.sys.logo.filePathIconRemark File support for web address images and file paths for internal uploads i18n_en 1 supervisor 1.70E+12 0
296 3650 3650 config.sys.logo.filePathBrandRemark File support for web address images and paths to internally uploaded files i18n_en 1 supervisor 1.70E+12 0
297 3651 3651 config.sys.loginBackgroundRemark The file supports web address images and internal upload file paths with a # in the default background i18n_en 1 supervisor 1.70E+12 0
298 3652 3652 config.sys.titleRemark System name length limit of 11-digit string i18n_en 1 supervisor 1.70E+12 0
299 3653 3653 config.sys.copyrightRemark Footer fixing strip with copyright notice on the left side i18n_en 1 supervisor 1.70E+12 0
300 3654 3654 config..export.id Parameter Code i18n_en 1 supervisor 1.70E+12 0
301 3655 3655 config..export.name Parameter Name i18n_en 1 supervisor 1.70E+12 0
302 3656 3656 config..export.key Parameter key name i18n_en 1 supervisor 1.70E+12 0
303 3657 3657 config..export.value Parameter Key Value i18n_en 1 supervisor 1.70E+12 0
304 3658 3658 config..export.type System builtin i18n_en 1 supervisor 1.70E+12 0
305 3659 3659 config..export.remark Parameter Description i18n_en 1 supervisor 1.70E+12 0
306 3660 3660 config.sys.titleValue AGrandEMS i18n_en 1 supervisor 1.70E+12 0
307 3661 3661 config.sys.copyrightValue Copyright ©2023 AGrandTech i18n_en 1 supervisor 1.70E+12 0
308 3662 3662 config.noData No parameter configuration data is accessible! i18n_en 1 supervisor 1.70E+12 0
309 3663 3663 config.errKey Invalid key i18n_en 1 supervisor 1.70E+12 0
310 3664 3664 config.errValueEq Change state is equal to the old value! i18n_en 1 supervisor 1.70E+12 0
311 3665 3665 config.errKeyExists Failed to manipulate parameter configuration [{name}], parameter key name already exists! i18n_en 1 supervisor 1.70E+12 0
312 3666 3666 config.errDelete Deletion of parameter configuration information failed! i18n_en 1 supervisor 1.70E+12 0
313 3667 3667 config.errType The operation contains built-in parameters and deletion is prohibited! i18n_en 1 supervisor 1.70E+12 0
314 3700 3700 job.monitor_sys_resource Monitor-System Resources i18n_en 1 supervisor 1.70E+12 0
315 3701 3701 job.monitor_sys_resource_remark 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 i18n_en 1 supervisor 1.70E+12 0
316 3702 3702 job.delExpiredNeBackup Delete expired NE etc backup file i18n_en 1 supervisor 1.70E+12 0
317 3703 3703 job.delExpiredNeBackupRemark Delete expired network element etc backup file, pass in the parameter to keep the backup file for {duration} days, default is 60 days. i18n_en 1 supervisor 1.70E+12 0
318 3704 3704 job.deleteExpiredAlarmRecord Delete expired historical alarm i18n_en 1 supervisor 1.70E+12 0
319 3705 3705 job.deleteExpiredAlarmRecordRemark Delete expired history alarm records, pass in the parameter to keep the history alarm records for {duration} days. i18n_en 1 supervisor 1.70E+12 0
320 3706 3706 job.deleteExpiredKpiRecord Delete expired KPI records i18n_en 1 supervisor 1.70E+12 0
321 3707 3707 job.deleteExpiredKpiRecordRemark KPI record retention for {duration} days i18n_en 1 supervisor 1.70E+12 0
322 3708 3708 job.backupEtcFromNE Network Element Configuration Auto Backup Task i18n_en 1 supervisor 1.70E+12 0
323 3709 3709 job.backupEtcFromNERemark Automatically backs up the configuration files in the network element's etc directory. i18n_en 1 supervisor 1.70E+12 0
324 3710 3710 job.export.jobID Task Code i18n_en 1 supervisor 1.70E+12 0
325 3711 3711 job.export.jobName Task name i18n_en 1 supervisor 1.70E+12 0
326 3712 3712 job.export.jobGroupName Task Group Name i18n_en 1 supervisor 1.70E+12 0
327 3713 3713 job.export.invokeTarget Call target i18n_en 1 supervisor 1.70E+12 0
328 3714 3714 job.export.targetParams Incoming Parameters i18n_en 1 supervisor 1.70E+12 0
329 3715 3715 job.export.cronExpression cron expressions i18n_en 1 supervisor 1.70E+12 0
330 3716 3716 job.export.status Status i18n_en 1 supervisor 1.70E+12 0
331 3717 3717 job.export.remark Remarks Description i18n_en 1 supervisor 1.70E+12 0
332 3718 3718 job.export.jobLogID Task log number i18n_en 1 supervisor 1.70E+12 0
333 3719 3719 job.export.jobLogStatus Task log status i18n_en 1 supervisor 1.70E+12 0
334 3720 3720 job.export.jobLogTime Task log time i18n_en 1 supervisor 1.70E+12 0
335 3721 3721 job.noData There is no accessible scheduling task data! i18n_en 1 supervisor 1.70E+12 0
336 3722 3722 job.errTargetParams Failed to operate scheduling task [{name}] with incorrect task incoming parameter json string! i18n_en 1 supervisor 1.70E+12 0
337 3723 3723 job.errCronExpression Scheduled task [{name}] failed with incorrect Cron expression! i18n_en 1 supervisor 1.70E+12 0
338 3724 3724 job.errJobExists Failed to add a new task [{name}] to a scheduling task, same task name in the same task group i18n_en 1 supervisor 1.70E+12 0
339 3725 3725 job.statusEq The change state is equal to the old value! i18n_en 1 supervisor 1.70E+12 0
340 3750 3750 role.admin Super Administrator i18n_en 1 supervisor 1.70E+12 0
341 3751 3751 role.adminAssign Managers i18n_en 1 supervisor 1.70E+12 0
342 3752 3752 role.operator Operators i18n_en 1 supervisor 1.70E+12 0
343 3753 3753 role.monitor Monitor i18n_en 1 supervisor 1.70E+12 0
344 3754 3754 role.vistor General Users i18n_en 1 supervisor 1.70E+12 0
345 3755 3755 role.adminRemark Super Administrator, cannot modify or delete i18n_en 1 supervisor 1.70E+12 0
346 3756 3756 role.adminAssignRemark Administrators can perform any operation on the device i18n_en 1 supervisor 1.70E+12 0
347 3757 3757 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. i18n_en 1 supervisor 1.70E+12 0
348 3758 3758 role.monitorRemark Monitoring personnel Can only read data from the device, but cannot make any settings on the device i18n_en 1 supervisor 1.70E+12 0
349 3759 3759 role.vistorRemark Ordinary users can only see system-related information i18n_en 1 supervisor 1.70E+12 0
350 3760 3760 role.export.id Role ID i18n_en 1 supervisor 1.70E+12 0
351 3761 3761 role.export.name Role Name i18n_en 1 supervisor 1.70E+12 0
352 3762 3762 role.export.key Role Key i18n_en 1 supervisor 1.70E+12 0
353 3763 3763 role.export.sort Role Order i18n_en 1 supervisor 1.70E+12 0
354 3764 3764 role.export.dataScope Role Data Range i18n_en 1 supervisor 1.70E+12 0
355 3765 3765 role.export.status Role Status i18n_en 1 supervisor 1.70E+12 0
356 3766 3766 role.noData There is no accessible role data! i18n_en 1 supervisor 1.70E+12 0
357 3767 3767 role.statusEq The change status is equal to the old value! i18n_en 1 supervisor 1.70E+12 0
358 3768 3768 role.errNameExists Manipulating role [{name}] failed, role name already exists! i18n_en 1 supervisor 1.70E+12 0
359 3769 3769 role.errKeyExists Failed to manipulate role [{name}], role key already exists! i18n_en 1 supervisor 1.70E+12 0
360 3800 3800 post.admin Systems i18n_en 1 supervisor 1.70E+12 0
361 3801 3801 post.operator Management i18n_en 1 supervisor 1.70E+12 0
362 3802 3802 post.monitor Operation & Maintenance i18n_en 1 supervisor 1.70E+12 0
363 3803 3803 post.visitor Monitoring i18n_en 1 supervisor 1.70E+12 0
364 3804 3804 post.export.id Post ID i18n_en 1 supervisor 1.70E+12 0
365 3805 3805 post.export.code Position Code i18n_en 1 supervisor 1.70E+12 0
366 3806 3806 post.export.name Position Name i18n_en 1 supervisor 1.70E+12 0
367 3807 3807 post.export.sort Position Sort i18n_en 1 supervisor 1.70E+12 0
368 3808 3808 post.export.status Position Status i18n_en 1 supervisor 1.70E+12 0
369 3809 3809 post.noData There is no accessible post data! i18n_en 1 supervisor 1.70E+12 0
370 3810 3810 post.errNameExists Failed to manipulate post [{name}], post name already exists already exists i18n_en 1 supervisor 1.70E+12 0
371 3811 3811 post.errCodeExists Failed to manipulate role [{name}], role key already exists. i18n_en 1 supervisor 1.70E+12 0
372 3830 3830 user.export.id User ID i18n_en 1 supervisor 1.70E+12 0
373 3831 3831 user.export.name Login Account i18n_en 1 supervisor 1.70E+12 0
374 3832 3832 user.export.nick Nickname i18n_en 1 supervisor 1.70E+12 0
375 3833 3833 user.export.email E-Mail i18n_en 1 supervisor 1.70E+12 0
376 3834 3834 user.export.phone Cell phone number i18n_en 1 supervisor 1.70E+12 0
377 3835 3835 user.export.sex Gender i18n_en 1 supervisor 1.70E+12 0
378 3836 3836 user.export.status User Status i18n_en 1 supervisor 1.70E+12 0
379 3837 3837 user.export.deptID Department number i18n_en 1 supervisor 1.70E+12 0
380 3838 3838 user.export.deptName Department Name i18n_en 1 supervisor 1.70E+12 0
381 3839 3839 user.export.deptLeader Department Head i18n_en 1 supervisor 1.70E+12 0
382 3840 3840 user.export.loginIP User Login IP i18n_en 1 supervisor 1.70E+12 0
383 3841 3841 user.export.loginDate User Login Time i18n_en 1 supervisor 1.70E+12 0
384 3842 3842 user.noData No accessible user data! i18n_en 1 supervisor 1.70E+12 0
385 3843 3843 user.statusEq The change status is equal to the old value! i18n_en 1 supervisor 1.70E+12 0
386 3844 3844 user.errPasswdOld Change password failed, old password is wrong i18n_en 1 supervisor 1.70E+12 0
387 3845 3845 user.errPasswdEqOld New password cannot be the same as the old one i18n_en 1 supervisor 1.70E+12 0
388 3846 3846 user.errPasswd Login password contains at least upper and lower case letters, numbers, special symbols, and not less than 6 digits. i18n_en 1 supervisor 1.70E+12 0
389 3847 3847 user.errEmailFormat Failed to operate user [{name}], mailbox format error i18n_en 1 supervisor 1.70E+12 0
390 3848 3848 user.errEmailExists Failed to operate user [{name}], mailbox already exists. i18n_en 1 supervisor 1.70E+12 0
391 3849 3849 user.errPhoneFormat Failed to operate user [{name}], cell phone number format is wrong. i18n_en 1 supervisor 1.70E+12 0
392 3850 3850 user.errPhoneExists Failed to operate user [{name}], cell phone number already exists. i18n_en 1 supervisor 1.70E+12 0
393 3851 3851 user.errNameExists Failed to operate user [{name}], login account already exists. i18n_en 1 supervisor 1.70E+12 0
394 3852 3852 user.import.mustItem Required list item in form, {text} i18n_en 1 supervisor 1.70E+12 0
395 3853 3853 user.import.phoneExist User ID: {id} cell phone number {phone} Existing i18n_en 1 supervisor 1.70E+12 0
396 3854 3854 user.import.phoneFormat User ID: {id} cell phone number {phone} Wrong format i18n_en 1 supervisor 1.70E+12 0
397 3855 3855 user.import.emailExist User ID: {id} User Email: {email} Existing i18n_en 1 supervisor 1.70E+12 0
398 3856 3856 user.import.emailFormat User ID: {id} Email: {email} Wrong Format i18n_en 1 supervisor 1.70E+12 0
399 3857 3857 user.import.success User ID:{id} Login name:{name} Imported successfully! i18n_en 1 supervisor 1.70E+12 0
400 3858 3858 user.import.fail User ID: {id} Login name: {name} Import failed i18n_en 1 supervisor 1.70E+12 0
401 3859 3859 user.import.successUpdate User ID: {id} Login name: {name} Update success i18n_en 1 supervisor 1.70E+12 0
402 3860 3860 user.import.failUpdate User ID: {id} Login Name: {name} Update Failed i18n_en 1 supervisor 1.70E+12 0
403 3861 3861 user.import.failTip Sorry, the import failed! A total of {num} entries were not formatted correctly, the error is below: i18n_en 1 supervisor 1.70E+12 0
404 3862 3862 user.import.successTip Congratulations, the data has been imported successfully! There are {num} entries with the following data: i18n_en 1 supervisor 1.70E+12 0
405 3900 3900 app.common.err403 Unauthorized access {method} {requestURI} i18n_en 1 supervisor 1.70E+12 0
406 3901 3901 app.common.err401 Invalid authorization i18n_en 1 supervisor 1.70E+12 0
407 3902 3902 app.common.err400 Parameter error i18n_en 1 supervisor 1.70E+12 0
408 3903 3903 app.common.exportEmpty Export data record is empty i18n_en 1 supervisor 1.70E+12 0
409 3904 3904 app.common.errOperateAdmin Built-in users are not allowed to operate i18n_en 1 supervisor 1.70E+12 0
410 3905 3905 app.common.errOperateRole Built-in roles are not allowed to be operated i18n_en 1 supervisor 1.70E+12 0
411 3906 3906 app.common.deleteSuccess Deleted successfully: {num} i18n_en 1 supervisor 1.70E+12 0
412 3907 3907 app.common.loginSuccess Login Success i18n_en 1 supervisor 1.70E+12 0
413 3908 3908 app.common.logoutSuccess Logout Successful i18n_en 1 supervisor 1.70E+12 0
414 3909 3909 app.common.errUnlock The user is not locked i18n_en 1 supervisor 1.70E+12 0
415 3910 3910 app.common.noLoginUser Invalid login user information i18n_en 1 supervisor 1.70E+12 0
416 3911 3911 app.common.rateLimitTip Access too often, please try again later i18n_en 1 supervisor 1.70E+12 0
417 3912 3912 log.operate.export.id Operation Number i18n_en 1 supervisor 1.70E+12 0
418 3913 3913 log.operate.export.title Module Name i18n_en 1 supervisor 1.70E+12 0
419 3914 3914 log.operate.export.businessType Operation Type i18n_en 1 supervisor 1.70E+12 0
420 3915 3915 log.operate.export.method Operation Method i18n_en 1 supervisor 1.70E+12 0
421 3916 3916 log.operate.export.requestMethod Request Method i18n_en 1 supervisor 1.70E+12 0
422 3917 3917 log.operate.export.operatorType Operation Type i18n_en 1 supervisor 1.70E+12 0
423 3918 3918 log.operate.export.operName Operator i18n_en 1 supervisor 1.70E+12 0
424 3919 3919 log.operate.export.deptName Operator's department name i18n_en 1 supervisor 1.70E+12 0
425 3920 3920 log.operate.export.url Request Link Address i18n_en 1 supervisor 1.70E+12 0
426 3921 3921 log.operate.export.ip Requesting Host i18n_en 1 supervisor 1.70E+12 0
427 3922 3922 log.operate.export.location Request Address i18n_en 1 supervisor 1.70E+12 0
428 3923 3923 log.operate.export.param Request Parameters i18n_en 1 supervisor 1.70E+12 0
429 3924 3924 log.operate.export.msg Operation Information i18n_en 1 supervisor 1.70E+12 0
430 3925 3925 log.operate.export.status Operation status i18n_en 1 supervisor 1.70E+12 0
431 3926 3926 log.operate.export.costTime Consumption time (ms) i18n_en 1 supervisor 1.70E+12 0
432 3927 3927 log.operate.export.operTime Operation time i18n_en 1 supervisor 1.70E+12 0
433 3928 3928 log.login.export.id Record number i18n_en 1 supervisor 1.70E+12 0
434 3929 3929 log.login.export.userName Login Account i18n_en 1 supervisor 1.70E+12 0
435 3930 3930 log.login.export.status Login Status i18n_en 1 supervisor 1.70E+12 0
436 3931 3931 log.login.export.ip Login Address i18n_en 1 supervisor 1.70E+12 0
437 3932 3932 log.login.export.location Login Location i18n_en 1 supervisor 1.70E+12 0
438 3933 3933 log.login.export.browser Browser i18n_en 1 supervisor 1.70E+12 0
439 3934 3934 log.login.export.os Operating System i18n_en 1 supervisor 1.70E+12 0
440 3935 3935 log.login.export.msg Login Information i18n_en 1 supervisor 1.70E+12 0
441 3936 3936 log.login.export.time Login Time i18n_en 1 supervisor 1.70E+12 0
442 3937 3937 trace.tcpdump.noData Can't find {type} {id} information of the corresponding network element. i18n_en 1 supervisor 1.70E+12 0
443 3938 3938 register.errUsername The account number cannot start with a number, but can contain upper and lower case letters, numbers, and not less than 5 digits. i18n_en 1 supervisor 1.70E+12 0
444 3939 3939 register.errPasswd The password must contain at least 6 upper and lower case letters, numbers, and special symbols. i18n_en 1 supervisor 1.70E+12 0
445 3940 3940 register.errPasswdNotEq User confirms password inconsistency i18n_en 1 supervisor 1.70E+12 0
446 3941 3941 register.success Successful registration i18n_en 1 supervisor 1.70E+12 0
447 3942 3942 register.successMsg {name} Register Successful {id} i18n_en 1 supervisor 1.70E+12 0
448 3943 3943 log.operate.title.sysJobLog Scheduling Task Logs i18n_en 1 supervisor 1.70E+12 0
449 3944 3944 log.operate.title.sysJob Scheduling Tasks i18n_en 1 supervisor 1.70E+12 0
450 3945 3945 log.operate.title.tcpdump Signaling Capture i18n_en 1 supervisor 1.70E+12 0
451 3946 3946 log.operate.title.sysConfig Parameter Configuration i18n_en 1 supervisor 1.70E+12 0
452 3947 3947 log.operate.title.sysDept Sector i18n_en 1 supervisor 1.70E+12 0
453 3948 3948 log.operate.title.sysDictData Dictionary Data i18n_en 1 supervisor 1.70E+12 0
454 3949 3949 log.operate.title.sysDictType Dictionary type i18n_en 1 supervisor 1.70E+12 0
455 3950 3950 log.operate.title.sysMenu Menu i18n_en 1 supervisor 1.70E+12 0
456 3951 3951 log.operate.title.sysPost Positions i18n_en 1 supervisor 1.70E+12 0
457 3952 3952 log.operate.title.sysProfile Personal Information i18n_en 1 supervisor 1.70E+12 0
458 3953 3953 log.operate.title.sysProfileAvatar Personal avatar i18n_en 1 supervisor 1.70E+12 0
459 3954 3954 log.operate.title.sysRole Roles i18n_en 1 supervisor 1.70E+12 0
460 3955 3955 log.operate.title.sysUser User i18n_en 1 supervisor 1.70E+12 0
461 3956 3956 log.operate.title.sysLogOper Operation Logging i18n_en 1 supervisor 1.70E+12 0
462 3957 3957 log.operate.title.sysLogLogin Operation Logging i18n_en 1 supervisor 1.70E+12 0
463 3958 3958 login.errNameOrPasswd User does not exist or password is wrong i18n_en 1 supervisor 1.70E+12 0
464 3959 3959 login.errDelFlag Sorry, your account has been deleted i18n_en 1 supervisor 1.70E+12 0
465 3960 3960 login.errStatus Sorry, your account has been disabled i18n_en 1 supervisor 1.70E+12 0
466 3961 3961 login.errRetryPasswd Password was entered incorrectly several times, account has been locked i18n_en 1 supervisor 1.70E+12 0
467 3962 3962 captcha.err Captcha Error i18n_en 1 supervisor 1.70E+12 0
468 3963 3963 captcha.errValid Captcha is invalid i18n_en 1 supervisor 1.70E+12 0
469 3964 3964 app.common.noUaOsBrowser Unknown Unknown i18n_en 1 supervisor 1.70E+12 0
470 3965 3965 app.common.noIPregion Intranet i18n_en 1 supervisor 1.70E+12 0
471 3966 3966 app.common.unknown Unknown i18n_en 1 supervisor 1.70E+12 0
472 3967 3967 app.common.noNEInfo No matching network element information found i18n_en 1 supervisor 1.70E+12 0
473 3968 3968 ne.udm.errImportUserAuthFileFormat Please upload a file in the format of. csv or. txt. English comma separated txt format: imsi, ki, algo, amf, opc i18n_en 1 supervisor 1.70E+12 0
474 3969 3969 ne.udm.errExportType Export file types support CSV and txt i18n_en 1 supervisor 1.70E+12 0
475 3970 3970 ne.udm.errImportUserSubFileFormat 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 i18n_en 1 supervisor 1.70E+12 0
476 3971 3971 log.operate.title.udmAuth UDM Authentication User i18n_en 1 supervisor 1.70E+12 0
477 3972 3972 log.operate.title.udmSub UDM Subscribers i18n_en 1 supervisor 1.70E+12 0
478 3973 3973 dictType.active_alarm_type Event Alarm Types i18n_en 1 supervisor 1.70E+12 0
479 3974 3974 dictType.active_alarm_type_remark List of Active Alarm Types i18n_en 1 supervisor 1.70E+12 0
480 3975 3975 dictData.active_alarm_type.communication Communication Alarm i18n_en 1 supervisor 1.70E+12 0
481 3976 3976 dictData.active_alarm_type.equipment Equipment Alarm i18n_en 1 supervisor 1.70E+12 0
482 3977 3977 dictData.active_alarm_type.processing Processing Failure Alarm i18n_en 1 supervisor 1.70E+12 0
483 3978 3978 dictData.active_alarm_type.environmental Environmental Alarm i18n_en 1 supervisor 1.70E+12 0
484 3979 3979 dictData.active_alarm_type.qualityOfService Quality of Service Alarm i18n_en 1 supervisor 1.70E+12 0
485 3980 3980 dictType.active_clear_type Alarm Clearing Types i18n_en 1 supervisor 1.70E+12 0
486 3981 3981 dictType.active_clear_type_remark List of Alarm Clearing Types i18n_en 1 supervisor 1.70E+12 0
487 3982 3982 dictData.active_clear_type.notCleared Not cleared i18n_en 1 supervisor 1.70E+12 0
488 3983 3983 dictData.active_clear_type.hand Manually cleared i18n_en 1 supervisor 1.70E+12 0
489 3984 3984 dictData.active_clear_type.auto Automatically cleared i18n_en 1 supervisor 1.70E+12 0
490 3985 3985 dictType.active_ack_state Alarm Acknowledgement Types i18n_en 1 supervisor 1.70E+12 0
491 3986 3986 dictType.active_ack_state_remark Alarm Acknowledgement Type List i18n_en 1 supervisor 1.70E+12 0
492 3987 3987 dictData.active_ack_state.unconfirmed Not Confirm i18n_en 1 supervisor 1.70E+12 0
493 3988 3988 dictData.active_ack_state.confirmed Confirm i18n_en 1 supervisor 1.70E+12 0
494 3989 3989 dictType.active_alarm_severity Severity i18n_en 1 supervisor 1.70E+12 0
495 3990 3990 dictType.active_alarm_severity_remark Severity List i18n_en 1 supervisor 1.70E+12 0
496 3991 3991 dictData.active_alarm_severity.critical Critical i18n_en 1 supervisor 1.70E+12 0
497 3992 3992 dictData.active_alarm_severity.major Major i18n_en 1 supervisor 1.70E+12 0
498 3993 3993 dictData.active_alarm_severity.minor Minor i18n_en 1 supervisor 1.70E+12 0
499 3994 3994 dictData.active_alarm_severity.warning Warning i18n_en 1 supervisor 1.70E+12 0
500 3995 3995 dictData.active_alarm_severity.event Event i18n_en 1 supervisor 1.70E+12 0
501 3996 3996 config.sys.officialUrl System Settings - Official Website Links i18n_en 1 supervisor 1.70E+12 0
502 3997 3997 config.sys.helpDoc System Settings-System Documentation i18n_en 1 supervisor 1.70E+12 0
503 3998 3998 config.sys.officialUrlRemark Default no address with # sign i18n_en 1 supervisor 1.70E+12 0
504 3999 3999 config.sys.helpDocRemark Static file directory address, use {language} to distinguish language files i18n_en 1 supervisor 1.70E+12 0
505 4000 4000 log.operate.title.neAction Network Element Processing i18n_en 1 supervisor 1.70E+12 0
506 4001 4001 log.operate.title.helpDoc System Usage Documentation i18n_en 1 supervisor 1.70E+12 0
507 4002 4002 menu.ueUser.n3iwf N3IWF Online User i18n_en 1 supervisor 1.70E+12 0
508 4003 4003 menu.ueUser.pcf User PCC Information i18n_en 1 supervisor 1.70E+12 0
509 4004 4004 menu.system.user.editRole Modifying user roles i18n_en 1 supervisor 1.70E+12 0
510 4005 4005 config.sys.i18nOpen Internationalization Switching i18n_en 1 supervisor 1.70E+12 0
511 4006 4006 config.sys.i18nDefault Internationalization Default Language i18n_en 1 supervisor 1.70E+12 0
512 4007 4007 user.export.role UserRole i18n_en 1 supervisor 1.70E+12 0
513 4008 4008 menu.system.setting.i18n Internationalization Switch i18n_en 1 supervisor 1.70E+12 0
514 4009 4009 menu.system.setting.i18nRemark Internationalized multilingual switching options i18n_en 1 supervisor 1.70E+12 0
515 4010 4010 dictType.index_status Home Status i18n_en 1 supervisor 1.70E+12 0
516 4011 4011 dictType.index_status_remark Network element status colors on the home page i18n_en 1 supervisor 1.70E+12 0
517 4012 4012 dictType.index_status.normal Normal i18n_en 1 supervisor 1.70E+12 0
518 4013 4013 dictType.index_status.abnormal Abnormal i18n_en 1 supervisor 1.70E+12 0
519 4014 4014 menu.log.neFile NE Log File i18n_en 1 supervisor 1.70E+12 0
520 4015 4015 job.deleteExpiredNeStateRecord Delete Expired NE State Record i18n_en 1 supervisor 1.70E+12 0
521 4016 4016 job.deleteExpiredNeStateRecordRemark Delete expired NE state records regularly and keep them for {duration} days by default. i18n_en 1 supervisor 1.70E+12 0
522 4017 4017 job.getStateFromNE Get state from NEs i18n_en 1 supervisor 1.70E+12 0
523 4018 4018 job.getStateFromNERemark Get state information from all NEs i18n_en 1 supervisor 1.70E+12 0
524 4019 4019 job.genNeStateAlarm Network Element Health Check i18n_en 1 supervisor 1.70E+12 0
525 4020 4020 job.genNeStateAlarmRemark Health status inspection of network elements, generating alarms in case of abnormalities. i18n_en 1 supervisor 1.70E+12 0
526 4021 4021 menu.neUser.nssf NSSF Subscription Info i18n_en 1 supervisor 1.70E+12 0
527 4022 4022 menu.neUser.nssfAmf NSSF Available AMFs i18n_en 1 supervisor 1.70E+12 0
528 4023 4023 menu.monitor.topology Topology Info i18n_en 1 supervisor 1.70E+12 0
529 4024 4024 menu.monitor.topologyBuild Topological Graph Build i18n_en 1 supervisor 1.70E+12 0
530 4025 4025 log.operate.title.chartGraph Topological Graph i18n_en 1 supervisor 1.70E+12 1
531 4026 4026 menu.monitor.topologyArchitecture NE System Topology i18n_en 1 supervisor 1.70E+12 0
532 4027 4027 menu.alarm Alarm i18n_en 1 supervisor 1.70E+12 0
533 4028 4028 menu.topology Topology i18n_en 1 supervisor 1.70E+12 0
534 4029 4029 config.sys.lockTime System Settings - Screen Lock Timeout Duration i18n_en 1 supervisor 1.70E+12 0
535 4030 4030 config.sys.lockTimeRemark Screen lock timeout duration when idle, in seconds. i18n_en 1 supervisor 1.70E+12 0
536 4031 4031 sys.account.captchaType Account Self Service - Captcha Type i18n_en 1 supervisor 1.70E+12 0
537 4032 4032 sys.account.captchaTypeRemark Using CAPTCHA types (math numeric calculation, char character validation) i18n_en 1 supervisor 1.70E+12 0
538 4033 4033 menu.dashboard Dashboard i18n_en 1 supervisor 1.70555E+12 0
539 4034 4034 menu.dashboard.overview Overview i18n_en 1 supervisor 1.70555E+12 0
540 4035 4035 menu.dashboard.cdr CDR i18n_en 1 supervisor 1.70555E+12 0

View File

@@ -0,0 +1,543 @@
dict_code,dict_sort,dict_label,dict_value,dict_type,tag_class,tag_type,status,create_by,create_time,update_by,update_time,remark
1000,1000,i18n,中文,i18n_zh,,,1,supervisor,1.70E+12,,0,
1001,1001,hello,你好,i18n_zh,,,1,supervisor,1.70E+12,,0,
1002,1002,menu.system,系统,i18n_zh,,,1,supervisor,1.70E+12,,0,
1003,1003,menu.monitor,监控,i18n_zh,,,1,supervisor,1.70E+12,,0,
1004,1004,menu.tools,工具,i18n_zh,,,1,supervisor,1.70E+12,,0,
1005,1005,menu.config,配置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1006,1006,menu.ueUser,终端,i18n_zh,,,1,supervisor,1.70E+12,,0,
1007,1007,menu.systemRemark,系统管理目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1008,1008,menu.monitorRemark,系统监控目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1009,1009,menu.toolsRemark,系统工具目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1010,1010,menu.configRemark,OMC配置管理目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1011,1011,menu.ueUserRemark,网元终端信息目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1012,1012,menu.security.user,用户管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1013,1013,menu.security.role,角色管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1014,1014,menu.security.roleUser,分配角色,i18n_zh,,,1,supervisor,1.70E+12,,0,
1015,1015,menu.system.menu,菜单管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1016,1016,menu.security.dept,部门管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1017,1017,menu.security.post,岗位管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1018,1018,menu.system.dictType,字典管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1019,1019,menu.system.dictData,字典数据,i18n_zh,,,1,supervisor,1.70E+12,,0,
1020,1020,menu.system.paramSet,参数设置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1021,1021,menu.system.systemLog,系统日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1022,1022,menu.system.systemInfo,系统信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1023,1023,menu.system.cacheInfo,缓存信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1024,1024,menu.system.cache,缓存管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1025,1025,menu.security.onlineUser,在线用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
1026,1026,menu.system.job,调度任务,i18n_zh,,,1,supervisor,1.70E+12,,0,
1027,1027,menu.system.jobLog,调度日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1028,1028,menu.tools.help,帮助文档,i18n_zh,,,1,supervisor,1.70E+12,,0,
1029,1029,menu.log.operat,操作日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1030,1030,menu.log.login,安全日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1031,1031,menu.security.userRemark,用户管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1032,1032,menu.security.roleRemark,角色管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1033,1033,menu.security.roleUserRemark,分配角色内嵌隐藏菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1034,1034,menu.system.menuRemark,菜单管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1035,1035,menu.security.deptRemark,部门管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1036,1036,menu.security.postRemark,岗位管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1037,1037,menu.system.dictTypeRemark,字典管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1038,1038,menu.system.dictDataRemark,字典数据内嵌隐藏菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1039,1039,menu.system.paramSetRemark,参数设置菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1040,1040,menu.system.systemLogRemark,系统日志目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1041,1041,menu.system.systemInfoRemark,系统信息菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1042,1042,menu.system.cacheInfoRemark,缓存信息菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1043,1043,menu.system.cacheRemark,缓存列表菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1044,1044,menu.security.onlineUserRemark,在线用户菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1045,1045,menu.system.jobRemark,调度任务菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1046,1046,menu.system.jobLogRemark,调度日志内嵌隐藏菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1047,1047,menu.tools.helpRemark,帮助文档菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1048,1048,menu.log.operatRemark,操作日志菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1049,1049,menu.log.loginRemark,登录日志菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1050,1050,menu.common.query,查询,i18n_zh,,,1,supervisor,1.70E+12,,0,
1051,1051,menu.common.add,新增,i18n_zh,,,1,supervisor,1.70E+12,,0,
1052,1052,menu.common.edit,修改,i18n_zh,,,1,supervisor,1.70E+12,,0,
1053,1053,menu.common.delete,删除,i18n_zh,,,1,supervisor,1.70E+12,,0,
1054,1054,menu.common.export,导出,i18n_zh,,,1,supervisor,1.70E+12,,0,
1055,1055,menu.common.import,导入,i18n_zh,,,1,supervisor,1.70E+12,,0,
1056,1056,menu.common.reset,重置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1057,1057,menu.common.unlock,账户解锁,i18n_zh,,,1,supervisor,1.70E+12,,0,
1058,1058,menu.forcedQuit.batch ,批量强退,i18n_zh,,,1,supervisor,1.70E+12,,0,
1059,1059,menu.forcedQuit.single,单条强退,i18n_zh,,,1,supervisor,1.70E+12,,0,
1060,1060,menu.ueUser.authUDM,UDM鉴权用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
1061,1061,menu.ueUser.subUDM,UDM签约用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
1062,1062,menu.ueUser.authUDMRemark,UDM鉴权用户菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1063,1063,menu.ueUser.subUDMRemark,UDM签约用户菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1064,1064,menu.config.neManage,网元管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1065,1065,menu.config.configNE,参数配置Original,i18n_zh,,,1,supervisor,1.70E+12,,0,
1066,1066,menu.config.neManageRemark,网元管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1067,1067,menu.config.configNERemark,参数配置菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1068,1068,menu.config.backupManage,备份管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1069,1069,menu.config.softwareManage,软件管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1070,1070,menu.ueUser.onlineIMS,IMS在线用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
1071,1071,menu.ueUser.onlineUE,UE在线信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1072,1072,menu.ueUser.base5G,基站信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1073,1073,menu.trace,跟踪,i18n_zh,,,1,supervisor,1.70E+12,,0,
1074,1074,menu.trace.task,跟踪任务,i18n_zh,,,1,supervisor,1.70E+12,,0,
1075,1075,menu.trace.analysis,信令分析,i18n_zh,,,1,supervisor,1.70E+12,,0,
1076,1076,menu.trace.pcap,信令抓包,i18n_zh,,,1,supervisor,1.70E+12,,0,
1077,1077,menu.fault,监控,i18n_zh,,,1,supervisor,1.70E+12,,0,
1078,1078,menu.config.backupManageRemark,备份管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1079,1079,menu.config.softwareManageRemark,软件管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1080,1080,menu.ueUser.onlineIMSRemark,IMS在线用户菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1081,1081,menu.ueUser.onlineUERemark,UE在线信息菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1082,1082,menu.ueUser.base5GRemark,5G基站信息菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1083,1083,menu.traceRemark,跟踪管理目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1084,1084,menu.trace.taskRemark,跟踪任务菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1085,1085,menu.trace.analysisRemark,信令分析菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1086,1086,menu.trace.pcapRemark,信令抓包菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1087,1087,menu.faultRemark,故障管理目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1088,1088,menu.fault.active,活动告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1089,1089,menu.log,日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1090,1090,menu.log.operatOld,操作日志(旧),i18n_zh,,,1,supervisor,1.70E+12,,0,
1091,1091,menu.log.mml,MML日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1092,1092,menu.log.alarm,告警日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1093,1093,menu.log.securityOld,安全日志(旧),i18n_zh,,,1,supervisor,1.70E+12,,0,
1094,1094,menu.log.forwarding,告警前转日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1095,1095,menu.log.set,日志设置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1096,1096,menu.monitor.sessionUser,用户会话,i18n_zh,,,1,supervisor,1.70E+12,,0,
1097,1097,menu.fault.history,历史告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1098,1098,menu.fault.set,设置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1099,1099,menu.perf,性能,i18n_zh,,,1,supervisor,1.70E+12,,0,
1100,1100,menu.fault.activemRemark,活动告警菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1101,1101,menu.logRemark,日志管理目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1102,1102,menu.log.operatOldRemark,操作日志旧layui菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1103,1103,menu.log.mmlRemark,操作MML日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1104,1104,menu.log.alarmRemark,告警日志菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1105,1105,menu.log.securityOldRemark,安全日志旧layui菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1106,1106,menu.log.forwardingRemark,告警前转日志菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1107,1107,menu.log.setRemark,日志设置菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1108,1108,menu.monitor.sessionUserRemark,用户会话旧layui菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1109,1109,menu.fault.historyRemark,历史告警菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1110,1110,menu.fault.setRemark,故障通用设置菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1111,1111,menu.perfRemark,性能目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1112,1112,menu.perf.task,任务管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1113,1113,menu.perf.data,性能数据,i18n_zh,,,1,supervisor,1.70E+12,,0,
1114,1114,menu.perf.report,性能报表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1115,1115,menu.perf.threshold,性能门限,i18n_zh,,,1,supervisor,1.70E+12,,0,
1116,1116,menu.perf.kpi,黄金指标,i18n_zh,,,1,supervisor,1.70E+12,,0,
1117,1117,menu.perf.customTarget,自定义指标,i18n_zh,,,1,supervisor,1.70E+12,,0,
1118,1118,menu.perf.set,性能通用设置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1119,1119,menu.mml,MML,i18n_zh,,,1,supervisor,1.70E+12,,0,
1120,1120,menu.mml.ne,网元操作,i18n_zh,,,1,supervisor,1.70E+12,,0,
1121,1121,menu.mml.udm,UDM操作,i18n_zh,,,1,supervisor,1.70E+12,,0,
1122,1122,menu.mml.set,MML设置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1123,1123,menu.mml.omc,OMC操作,i18n_zh,,,1,supervisor,1.70E+12,,0,
1124,1124,menu.perf.taskRemark,任务管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1125,1125,menu.perf.dataRemark,性能数据菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1126,1126,menu.perf.reportRemark,性能报表菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1127,1127,menu.perf.thresholdRemark,性能门限菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1128,1128,menu.perf.kpiRemark,黄金指标菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1129,1129,menu.perf.customTargetRemark,自定义指标菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1130,1130,menu.perf.setRemark,性能通用设置菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1131,1131,menu.mmlRemark,MML管理目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1132,1132,menu.mml.neRemark,网元操作菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1133,1133,menu.mml.udmRemark,网元UDM用户数据菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1134,1134,menu.mml.setRemark,MML设置菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1135,1135,menu.mml.omcRemark,OMC操作菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1136,1136,menu.config.licenseManage,许可证管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1137,1137,menu.security,安全,i18n_zh,,,1,supervisor,1.70E+12,,0,
1138,1138,menu.system.systemSet,系统设置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1139,1139,menu.system.systemResource,系统资源,i18n_zh,,,1,supervisor,1.70E+12,,0,
1140,1140,menu.config.configNEForm,参数配置Form,i18n_zh,,,1,supervisor,1.70E+12,,0,
1141,1141,menu.config.configNETree,参数配置Tree,i18n_zh,,,1,supervisor,1.70E+12,,0,
1142,1142,menu.config.configNETreeTable,参数配置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1143,1143,menu.config.licenseManageRemark,许可证管理菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1144,1144,menu.securityRemark,安全管理目录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1145,1145,menu.system.systemSetRemark,系统设置菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1146,1146,menu.system.systemResourceRemark,系统资源 cpu io network菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1147,1147,menu.config.configNEFormRemark,参数配置Form菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1148,1148,menu.config.configNETreeRemark,参数配置Tree菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1149,1149,menu.config.configNETreeTableRemark,参数配置TreeTable菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1150,1150,menu.noData,没有可访问菜单数据!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1151,1151,menu.errNameExists,操作菜单【{name}】失败,菜单名称已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1152,1152,menu.errPathExists,操作菜单【{name}】失败,菜单路由地址已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1153,1153,menu.errFramePath,操作菜单【{name}】失败非内部地址请以http(s)://开头,i18n_zh,,,1,supervisor,1.70E+12,,0,
1154,1154,menu.errParentStatus,上级菜单未启用!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1155,1155,menu.errHasChildUse,操作菜单【{name}】失败,存在使用子菜单数:{num},i18n_zh,,,1,supervisor,1.70E+12,,0,
1156,1156,menu.errHasRoleUse,操作菜单【{name}】失败,菜单已分配给角色数:{num},i18n_zh,,,1,supervisor,1.70E+12,,0,
1400,1400,dictData.sex.un,未选择,i18n_zh,,,1,supervisor,1.70E+12,,0,
1401,1401,dictData.sex.male,,i18n_zh,,,1,supervisor,1.70E+12,,0,
1402,1402,dictData.sex.female,,i18n_zh,,,1,supervisor,1.70E+12,,0,
1403,1403,dictData.show,显示,i18n_zh,,,1,supervisor,1.70E+12,,0,
1404,1404,dictData.hide,隐藏,i18n_zh,,,1,supervisor,1.70E+12,,0,
1405,1405,dictData.normal,正常,i18n_zh,,,1,supervisor,1.70E+12,,0,
1406,1406,dictData.disable,停用,i18n_zh,,,1,supervisor,1.70E+12,,0,
1407,1407,dictData.yes,,i18n_zh,,,1,supervisor,1.70E+12,,0,
1408,1408,dictData.no,,i18n_zh,,,1,supervisor,1.70E+12,,0,
1409,1409,dictData.success,成功,i18n_zh,,,1,supervisor,1.70E+12,,0,
1410,1410,dictData.fail,失败,i18n_zh,,,1,supervisor,1.70E+12,,0,
1411,1411,dictData.jobStatus.normal,正常,i18n_zh,,,1,supervisor,1.70E+12,,0,
1412,1412,dictData.jobStatus.pause,暂停,i18n_zh,,,1,supervisor,1.70E+12,,0,
1413,1413,dictData.jobGroup.Default,默认,i18n_zh,,,1,supervisor,1.70E+12,,0,
1414,1414,dictData.jobGroup.System,系统,i18n_zh,,,1,supervisor,1.70E+12,,0,
1415,1415,dictData.operType.other,其他,i18n_zh,,,1,supervisor,1.70E+12,,0,
1416,1416,dictData.operType.add,新增,i18n_zh,,,1,supervisor,1.70E+12,,0,
1417,1417,dictData.operType.edit,修改,i18n_zh,,,1,supervisor,1.70E+12,,0,
1418,1418,dictData.operType.delete,删除,i18n_zh,,,1,supervisor,1.70E+12,,0,
1419,1419,dictData.operType.auth,授权,i18n_zh,,,1,supervisor,1.70E+12,,0,
1420,1420,dictData.operType.export,导出,i18n_zh,,,1,supervisor,1.70E+12,,0,
1421,1421,dictData.operType.import,导入,i18n_zh,,,1,supervisor,1.70E+12,,0,
1422,1422,dictData.operType.forced quit,强退,i18n_zh,,,1,supervisor,1.70E+12,,0,
1423,1423,dictData.operType.clear,清空,i18n_zh,,,1,supervisor,1.70E+12,,0,
1424,1424,dictData.trace.interface,接口跟踪,i18n_zh,,,1,supervisor,1.70E+12,,0,
1425,1425,dictData.trace.device,设备跟踪,i18n_zh,,,1,supervisor,1.70E+12,,0,
1426,1426,dictData.trace.user,用户跟踪,i18n_zh,,,1,supervisor,1.70E+12,,0,
1427,1427,dictData.logType.download,下载,i18n_zh,,,1,supervisor,1.70E+12,,0,
1428,1428,dictData.logType.activation,激活,i18n_zh,,,1,supervisor,1.70E+12,,0,
1429,1429,dictData.logType.add,新增,i18n_zh,,,1,supervisor,1.70E+12,,0,
1430,1430,dictData.logType.other,其他,i18n_zh,,,1,supervisor,1.70E+12,,0,
1431,1431,dictData.logType.back,回退,i18n_zh,,,1,supervisor,1.70E+12,,0,
1432,1432,dictData.logType.delete,删除,i18n_zh,,,1,supervisor,1.70E+12,,0,
1433,1433,dictData.logType.distribute,分配,i18n_zh,,,1,supervisor,1.70E+12,,0,
1434,1434,dictData.logType.export,导出,i18n_zh,,,1,supervisor,1.70E+12,,0,
1435,1435,dictData.logType.query,查询,i18n_zh,,,1,supervisor,1.70E+12,,0,
1436,1436,dictData.logType.setup,设置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1437,1437,dictData.logType.update,更新,i18n_zh,,,1,supervisor,1.70E+12,,0,
1438,1438,dictData.logType.upload,上传,i18n_zh,,,1,supervisor,1.70E+12,,0,
1439,1439,dictData.logType.view,查看,i18n_zh,,,1,supervisor,1.70E+12,,0,
1440,1440,dictData.logType.login,登录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1441,1441,dictData.logType.logout,登出,i18n_zh,,,1,supervisor,1.70E+12,,0,
1442,1442,dictData.securityLogType.add,新增,i18n_zh,,,1,supervisor,1.70E+12,,0,
1443,1443,dictData.securityLogType.update,更新,i18n_zh,,,1,supervisor,1.70E+12,,0,
1444,1444,dictData.securityLogType.delete,删除,i18n_zh,,,1,supervisor,1.70E+12,,0,
1445,1445,dictData.securityLogType.lock,锁定,i18n_zh,,,1,supervisor,1.70E+12,,0,
1446,1446,dictData.securityLogType.unlock,解锁,i18n_zh,,,1,supervisor,1.70E+12,,0,
1447,1447,dictData.securityLogType.reset,重置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1448,1448,dictData.securityLogType.deactivate,停用,i18n_zh,,,1,supervisor,1.70E+12,,0,
1449,1449,dictData.jobSaveLog.no,不记录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1450,1450,dictData.jobSaveLog.yes,记录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1451,1451,dictData.neVersionStatus.upload,已上传,i18n_zh,,,1,supervisor,1.70E+12,,0,
1452,1452,dictData.neVersionStatus.inactive,未激活,i18n_zh,,,1,supervisor,1.70E+12,,0,
1453,1453,dictData.neVersionStatus.active,已激活,i18n_zh,,,1,supervisor,1.70E+12,,0,
1454,1454,dictData.alarmStatus.history,历史告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1455,1455,dictData.alarmStatus.active,活动告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1456,1456,dictData.export.code,数据代码,i18n_zh,,,1,supervisor,1.70E+12,,0,
1457,1457,dictData.export.sort,数据排序,i18n_zh,,,1,supervisor,1.70E+12,,0,
1458,1458,dictData.export.label,数据标签,i18n_zh,,,1,supervisor,1.70E+12,,0,
1459,1459,dictData.export.value,数据键值,i18n_zh,,,1,supervisor,1.70E+12,,0,
1460,1460,dictData.export.type,数据排序,i18n_zh,,,1,supervisor,1.70E+12,,0,
1461,1461,dictData.export.status,数据状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1462,1462,dictData.datascope.all,全部数据权限,i18n_zh,,,1,supervisor,1.70E+12,,0,
1463,1463,dictData.datascope.custom,自定数据权限,i18n_zh,,,1,supervisor,1.70E+12,,0,
1464,1464,dictData.datascope.dept,部门数据权限,i18n_zh,,,1,supervisor,1.70E+12,,0,
1465,1465,dictData.datascope.deptAndChid,部门及以下数据权限,i18n_zh,,,1,supervisor,1.70E+12,,0,
1466,1466,dictData.datascope.self,仅本人数据权限,i18n_zh,,,1,supervisor,1.70E+12,,0,
1467,1467,dictData.noData,没有可访问字典编码数据!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1468,1468,dictData.errLabelExists,操作数据【{name}】失败,该字典类型下标签名已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1500,1500,dictType.sys_user_sex,用户性别,i18n_zh,,,1,supervisor,1.70E+12,,0,
1501,1501,dictType.sys_show_hide,菜单状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1502,1502,dictType.sys_normal_disable,系统开关,i18n_zh,,,1,supervisor,1.70E+12,,0,
1503,1503,dictType.sys_job_status,任务状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1504,1504,dictType.sys_job_group,任务分组,i18n_zh,,,1,supervisor,1.70E+12,,0,
1505,1505,dictType.sys_yes_no,系统是否,i18n_zh,,,1,supervisor,1.70E+12,,0,
1506,1506,dictType.sys_oper_type,操作类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1507,1507,dictType.sys_common_status,系统状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1508,1508,dictType.trace_type,跟踪类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1509,1509,dictType.operation_log_type,操作日志类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1510,1510,dictType.alarm_status,告警日志类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1511,1511,dictType.security_log_type,安全日志类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1512,1512,dictType.ne_version_status,网元软件版本状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1513,1513,dictType.i18n_en,多语言-英文,i18n_zh,,,1,supervisor,1.70E+12,,0,
1514,1514,dictType.i18n_zh,多语言-中文,i18n_zh,,,1,supervisor,1.70E+12,,0,
1515,1515,dictType.sys_user_sex_remark,用户性别列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1516,1516,dictType.sys_show_hide_remark,菜单状态列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1517,1517,dictType.sys_normal_disable_remark,系统开关列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1518,1518,dictType.sys_job_status_remark,任务状态列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1519,1519,dictType.sys_job_group_remark,任务分组列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1520,1520,dictType.sys_yes_no_remark,系统是否列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1521,1521,dictType.sys_oper_type_remark,操作类型列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1522,1522,dictType.sys_common_status_remark,登录状态列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1523,1523,dictType.trace_type_remark,跟踪类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1524,1524,dictType.operation_log_type_remark,操作日志类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1525,1525,dictType.alarm_status_remark,alarm_status,i18n_zh,,,1,supervisor,1.70E+12,,0,
1526,1526,dictType.security_log_type_remark,安全日志类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1527,1527,dictType.ne_version_status_remark,网元软件版本状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1528,1528,dictType.i18n_en_remark,Internationalization - English,i18n_zh,,,1,supervisor,1.70E+12,,0,
1529,1529,dictType.i18n_zh_remark,Internationalization - Chinese,i18n_zh,,,1,supervisor,1.70E+12,,0,
1530,1530,dictType.export.id,字典编号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1531,1531,dictType.export.name,字典名称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1532,1532,dictType.export.type,字典类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1533,1533,dictType.export.status,字典状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1534,1534,dictType.sys_role_datascope,系统角色数据范围,i18n_zh,,,1,supervisor,1.70E+12,,0,
1535,1535,dictType.sys_role_datascope_remark,系统角色数据范围映射,i18n_zh,,,1,supervisor,1.70E+12,,0,
1536,1536,dictType.noData,没有可访问字典类型数据!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1537,1537,dictType.errNameExists,操作字典【{name}】失败,字典名称已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1538,1538,dictType.errTypeExists,操作字典【{name}】失败,字典类型已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1600,1600,dept.root,系统维护部,i18n_zh,,,1,supervisor,1.70E+12,,0,
1601,1601,dept.root.item1,运维一部,i18n_zh,,,1,supervisor,1.70E+12,,0,
1602,1602,dept.noData,没有可访问部门数据!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1603,1603,dept.errParentDelFlag,上级部门【{name}】已删除,不允许新增,i18n_zh,,,1,supervisor,1.70E+12,,0,
1604,1604,dept.errParentStatus,上级部门【{name}】停用,不允许新增,i18n_zh,,,1,supervisor,1.70E+12,,0,
1605,1605,dept.errNameExists,操作部门【{name}】失败,部门名称已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1606,1606,dept.errParentID,操作部门【{name}】失败,上级部门不能是自己,i18n_zh,,,1,supervisor,1.70E+12,,0,
1607,1607,dept.errHasChildUse,操作失败,该部门包含未停用的子部门数量:{num},i18n_zh,,,1,supervisor,1.70E+12,,0,
1608,1608,dept.errHasUserUse,不允许删除,部门已分配给用户数:{num},i18n_zh,,,1,supervisor,1.70E+12,,0,
1630,1630,config.sys.user.initPassword,用户管理-账号初始密码,i18n_zh,,,1,supervisor,1.70E+12,,0,
1631,1631,config.sys.account.captchaEnabled,账号自助-验证码开关,i18n_zh,,,1,supervisor,1.70E+12,,0,
1632,1632,config.sys.account.registerUser,账号自助-是否开启用户注册功能,i18n_zh,,,1,supervisor,1.70E+12,,0,
1633,1633,config.sys.user.maxRetryCount,用户管理-密码最大错误次数,i18n_zh,,,1,supervisor,1.70E+12,,0,
1634,1634,config.sys.user.lockTime,用户管理-密码锁定时间,i18n_zh,,,1,supervisor,1.70E+12,,0,
1635,1635,config.monitor.sysResource.storeDays,监控-系统资源-数据保留时长,i18n_zh,,,1,supervisor,1.70E+12,,0,
1636,1636,config.sys.logo.type,系统设置-LOGO类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1637,1637,config.sys.logo.filePathIcon,系统设置-LOGO文件icon,i18n_zh,,,1,supervisor,1.70E+12,,0,
1638,1638,config.sys.logo.filePathBrand,系统设置-LOGO文件brand,i18n_zh,,,1,supervisor,1.70E+12,,0,
1639,1639,config.sys.loginBackground,系统设置-登录界面背景,i18n_zh,,,1,supervisor,1.70E+12,,0,
1640,1640,config.sys.title,系统设置-系统名称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1641,1641,config.sys.copyright,系统设置-版权声明,i18n_zh,,,1,supervisor,1.70E+12,,0,
1642,1642,config.sys.user.initPasswordRemark,导入用户初始化密码 123456,i18n_zh,,,1,supervisor,1.70E+12,,0,
1643,1643,config.sys.account.captchaEnabledRemark,是否开启验证码功能true开启false关闭,i18n_zh,,,1,supervisor,1.70E+12,,0,
1644,1644,config.sys.account.registerUserRemark,是否开启注册用户功能true开启false关闭,i18n_zh,,,1,supervisor,1.70E+12,,0,
1645,1645,config.sys.user.maxRetryCountRemark,密码最大错误次数,i18n_zh,,,1,supervisor,1.70E+12,,0,
1646,1646,config.sys.user.lockTimeRemark,"密码锁定时间,单位分钟默认10分钟",i18n_zh,,,1,supervisor,1.70E+12,,0,
1647,1647,config.monitor.sysResource.storeDaysRemark,监控-系统资源-数据保留时长,单位天。根据当前日期,删除超过保留时长的日期数据信息。,i18n_zh,,,1,supervisor,1.70E+12,,0,
1648,1648,config.sys.logo.typeRemark,"全图brand
小图icon",i18n_zh,,,1,supervisor,1.70E+12,,0,
1649,1649,config.sys.logo.filePathIconRemark,文件支持网络地址图片和内部上传的文件路径,i18n_zh,,,1,supervisor,1.70E+12,,0,
1650,1650,config.sys.logo.filePathBrandRemark,文件支持网络地址图片和内部上传的文件路径,i18n_zh,,,1,supervisor,1.70E+12,,0,
1651,1651,config.sys.loginBackgroundRemark,文件支持网络地址图片和内部上传的文件路径,默认背景用#号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1652,1652,config.sys.titleRemark,系统名称长度限制11位字符串,i18n_zh,,,1,supervisor,1.70E+12,,0,
1653,1653,config.sys.copyrightRemark,底脚固定条,左侧放置版权声明,i18n_zh,,,1,supervisor,1.70E+12,,0,
1654,1654,config..export.id,参数编号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1655,1655,config..export.name,参数名称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1656,1656,config..export.key,参数键名,i18n_zh,,,1,supervisor,1.70E+12,,0,
1657,1657,config..export.value,参数键值,i18n_zh,,,1,supervisor,1.70E+12,,0,
1658,1658,config..export.type,系统内置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1659,1659,config..export.remark,参数说明,i18n_zh,,,1,supervisor,1.70E+12,,0,
1660,1660,config.sys.titleValue,AGrandEMS,i18n_zh,,,1,supervisor,1.70E+12,,0,
1661,1661,config.sys.copyrightValue,Copyright ©2023 千通科技,i18n_zh,,,1,supervisor,1.70E+12,,0,
1662,1662,config.noData,没有可访问参数配置数据!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1663,1663,config.errKey,无效 key,i18n_zh,,,1,supervisor,1.70E+12,,0,
1664,1664,config.errValueEq,变更状态与旧值相等!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1665,1665,config.errKeyExists,操作参数配置【{name}】失败,参数键名已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1666,1666,config.errDelete,删除参数配置信息失败!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1667,1667,config.errType,操作含有内置参数,禁止删除!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1700,1700,job.monitor_sys_resource,监控-系统资源,i18n_zh,,,1,supervisor,1.70E+12,,0,
1701,1701,job.monitor_sys_resource_remark,"系统资源CPU/IO/Netword收集
interval单位分钟平均分钟资源情况
请根据cron表达式的时间单位分钟传入参数interva值",i18n_zh,,,1,supervisor,1.70E+12,,0,
1702,1702,job.delExpiredNeBackup,删除过期网元备份文件,i18n_zh,,,1,supervisor,1.70E+12,,0,
1703,1703,job.delExpiredNeBackupRemark,"删除过期网元etc备份文件, 传入参数表示保留{duration}天的备份文件, 默认60天",i18n_zh,,,1,supervisor,1.70E+12,,0,
1704,1704,job.deleteExpiredAlarmRecord,删除过期历史告警记录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1705,1705,job.deleteExpiredAlarmRecordRemark,删除过期历史告警记录,传入参数表示保留{duration}天的历史告警记录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1706,1706,job.deleteExpiredKpiRecord,删除过期黄金指标记录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1707,1707,job.deleteExpiredKpiRecordRemark,黄金指标记录保留{duration}天,i18n_zh,,,1,supervisor,1.70E+12,,0,
1708,1708,job.backupEtcFromNE,网元配置自动备份任务,i18n_zh,,,1,supervisor,1.70E+12,,0,
1709,1709,job.backupEtcFromNERemark,自动备份网元etc目录下的配置文件,i18n_zh,,,1,supervisor,1.70E+12,,0,
1710,1710,job.export.jobID,任务编号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1711,1711,job.export.jobName,任务名称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1712,1712,job.export.jobGroupName,任务组名,i18n_zh,,,1,supervisor,1.70E+12,,0,
1713,1713,job.export.invokeTarget,调用目标,i18n_zh,,,1,supervisor,1.70E+12,,0,
1714,1714,job.export.targetParams,传入参数,i18n_zh,,,1,supervisor,1.70E+12,,0,
1715,1715,job.export.cronExpression,cron表达式,i18n_zh,,,1,supervisor,1.70E+12,,0,
1716,1716,job.export.status,状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1717,1717,job.export.remark,备注说明,i18n_zh,,,1,supervisor,1.70E+12,,0,
1718,1718,job.export.jobLogID,任务日志编号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1719,1719,job.export.jobLogStatus,任务日志状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1720,1720,job.export.jobLogTime,任务日志时间,i18n_zh,,,1,supervisor,1.70E+12,,0,
1721,1721,job.noData,没有可访问调度任务数据!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1722,1722,job.errTargetParams,操作调度任务【{name}】失败任务传入参数json字符串不正确,i18n_zh,,,1,supervisor,1.70E+12,,0,
1723,1723,job.errCronExpression,操作调度任务【{name}】失败Cron表达式不正确,i18n_zh,,,1,supervisor,1.70E+12,,0,
1724,1724,job.errJobExists,调度任务新增【{name}】失败,同任务组内有相同任务名称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1725,1725,job.statusEq,变更状态与旧值相等!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1750,1750,role.admin,超级管理员,i18n_zh,,,1,supervisor,1.70E+12,,0,
1751,1751,role.adminAssign,管理人员,i18n_zh,,,1,supervisor,1.70E+12,,0,
1752,1752,role.operator,运维人员,i18n_zh,,,1,supervisor,1.70E+12,,0,
1753,1753,role.monitor,监控人员,i18n_zh,,,1,supervisor,1.70E+12,,0,
1754,1754,role.vistor,普通用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
1755,1755,role.adminRemark,超级管理员,无法修改删除,i18n_zh,,,1,supervisor,1.70E+12,,0,
1756,1756,role.adminAssignRemark,管理人员 可以对设备进行任何操作,i18n_zh,,,1,supervisor,1.70E+12,,0,
1757,1757,role.operatorRemark,运维人员 可以从设备读取数据,并对设备进行配置,但是不能对设备进行软件升级操作。,i18n_zh,,,1,supervisor,1.70E+12,,0,
1758,1758,role.monitorRemark,监控人员 只能从设备读取数据,而不能对设备进行任何设置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1759,1759,role.vistorRemark,普通用户 只可看系统相关信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1760,1760,role.export.id,角色编号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1761,1761,role.export.name,角色名称 ,i18n_zh,,,1,supervisor,1.70E+12,,0,
1762,1762,role.export.key,角色键值,i18n_zh,,,1,supervisor,1.70E+12,,0,
1763,1763,role.export.sort,角色顺序,i18n_zh,,,1,supervisor,1.70E+12,,0,
1764,1764,role.export.dataScope,角色数据范围,i18n_zh,,,1,supervisor,1.70E+12,,0,
1765,1765,role.export.status,角色状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1766,1766,role.noData,没有可访问角色数据!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1767,1767,role.statusEq,变更状态与旧值相等!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1768,1768,role.errNameExists,操作角色【{name}】失败,角色名称已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1769,1769,role.errKeyExists,操作角色【{name}】失败,角色键值已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1800,1800,post.admin,系统,i18n_zh,,,1,supervisor,1.70E+12,,0,
1801,1801,post.operator,管理,i18n_zh,,,1,supervisor,1.70E+12,,0,
1802,1802,post.monitor,运维,i18n_zh,,,1,supervisor,1.70E+12,,0,
1803,1803,post.visitor,监控,i18n_zh,,,1,supervisor,1.70E+12,,0,
1804,1804,post.export.id,岗位编号 ,i18n_zh,,,1,supervisor,1.70E+12,,0,
1805,1805,post.export.code,岗位编码,i18n_zh,,,1,supervisor,1.70E+12,,0,
1806,1806,post.export.name,岗位名称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1807,1807,post.export.sort,岗位排序,i18n_zh,,,1,supervisor,1.70E+12,,0,
1808,1808,post.export.status,岗位状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1809,1809,post.noData,没有可访问岗位数据!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1810,1810,post.errNameExists,操作岗位【{name}】失败,岗位名称已存在已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1811,1811,post.errCodeExists,操作角色【{name}】失败,角色键值已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1830,1830,user.export.id,用户编号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1831,1831,user.export.name,登录账号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1832,1832,user.export.nick,用户昵称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1833,1833,user.export.email,电子邮箱,i18n_zh,,,1,supervisor,1.70E+12,,0,
1834,1834,user.export.phone,手机号码,i18n_zh,,,1,supervisor,1.70E+12,,0,
1835,1835,user.export.sex,用户性别,i18n_zh,,,1,supervisor,1.70E+12,,0,
1836,1836,user.export.status,用户状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1837,1837,user.export.deptID,部门编号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1838,1838,user.export.deptName,部门名称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1839,1839,user.export.deptLeader,部门负责人,i18n_zh,,,1,supervisor,1.70E+12,,0,
1840,1840,user.export.loginIP,用户登录IP,i18n_zh,,,1,supervisor,1.70E+12,,0,
1841,1841,user.export.loginDate,用户登录时间,i18n_zh,,,1,supervisor,1.70E+12,,0,
1842,1842,user.noData,没有可访问用户数据!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1843,1843,user.statusEq,变更状态与旧值相等!,i18n_zh,,,1,supervisor,1.70E+12,,0,
1844,1844,user.errPasswdOld,修改密码失败,旧密码错误,i18n_zh,,,1,supervisor,1.70E+12,,0,
1845,1845,user.errPasswdEqOld,新密码不能与旧密码相同,i18n_zh,,,1,supervisor,1.70E+12,,0,
1846,1846,user.errPasswd,登录密码至少包含大小写字母、数字、特殊符号且不少于6位,i18n_zh,,,1,supervisor,1.70E+12,,0,
1847,1847,user.errEmailFormat,操作用户【{name}】失败,邮箱格式错误,i18n_zh,,,1,supervisor,1.70E+12,,0,
1848,1848,user.errEmailExists,操作用户【{name}】失败,邮箱已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1849,1849,user.errPhoneFormat,操作用户【{name}】失败,手机号码格式错误,i18n_zh,,,1,supervisor,1.70E+12,,0,
1850,1850,user.errPhoneExists,操作用户【{name}】失败,手机号码已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1851,1851,user.errNameExists,操作用户【{name}】失败,登录账号已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1852,1852,user.import.mustItem,表格中必填列表项,{text},i18n_zh,,,1,supervisor,1.70E+12,,0,
1853,1853,user.import.phoneExist,用户编号:{id} 手机号码 {phone} 已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1854,1854,user.import.phoneFormat,用户编号:{id} 手机号码 {phone} 格式错误,i18n_zh,,,1,supervisor,1.70E+12,,0,
1855,1855,user.import.emailExist,用户编号:{id} 用户邮箱:{email} 已存在,i18n_zh,,,1,supervisor,1.70E+12,,0,
1856,1856,user.import.emailFormat,用户编号:{id} 用户邮箱:{email} 格式错误,i18n_zh,,,1,supervisor,1.70E+12,,0,
1857,1857,user.import.success,用户编号:{id} 登录名称:{name} 导入成功,i18n_zh,,,1,supervisor,1.70E+12,,0,
1858,1858,user.import.fail,用户编号:{id} 登录名称:{name} 导入失败,i18n_zh,,,1,supervisor,1.70E+12,,0,
1859,1859,user.import.successUpdate,用户编号:{id} 登录名称:{name} 更新成功,i18n_zh,,,1,supervisor,1.70E+12,,0,
1860,1860,user.import.failUpdate,用户编号:{id} 登录名称:{name} 更新失败,i18n_zh,,,1,supervisor,1.70E+12,,0,
1861,1861,user.import.failTip,很抱歉,导入失败!共 {num} 条数据格式不正确,错误如下:,i18n_zh,,,1,supervisor,1.70E+12,,0,
1862,1862,user.import.successTip,恭喜您,数据已全部导入成功!共 {num} 条,数据如下:,i18n_zh,,,1,supervisor,1.70E+12,,0,
1900,1900,app.common.err403,无权访问 {method} {requestURI},i18n_zh,,,1,supervisor,1.70E+12,,0,
1901,1901,app.common.err401,无效身份授权,i18n_zh,,,1,supervisor,1.70E+12,,0,
1902,1902,app.common.err400,参数错误,i18n_zh,,,1,supervisor,1.70E+12,,0,
1903,1903,app.common.exportEmpty,导出数据记录为空,i18n_zh,,,1,supervisor,1.70E+12,,0,
1904,1904,app.common.errOperateAdmin,不允许操作内置用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
1905,1905,app.common.errOperateRole,不允许操作内置角色,i18n_zh,,,1,supervisor,1.70E+12,,0,
1906,1906,app.common.deleteSuccess,删除成功:{num},i18n_zh,,,1,supervisor,1.70E+12,,0,
1907,1907,app.common.loginSuccess,登录成功,i18n_zh,,,1,supervisor,1.70E+12,,0,
1908,1908,app.common.logoutSuccess,注销成功,i18n_zh,,,1,supervisor,1.70E+12,,0,
1909,1909,app.common.errUnlock,该用户未被锁定,i18n_zh,,,1,supervisor,1.70E+12,,0,
1910,1910,app.common.noLoginUser,登录用户信息无效,i18n_zh,,,1,supervisor,1.70E+12,,0,
1911,1911,app.common.rateLimitTip,访问过于频繁,请稍候再试,i18n_zh,,,1,supervisor,1.70E+12,,0,
1912,1912,log.operate.export.id,操作编号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1913,1913,log.operate.export.title,模块名称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1914,1914,log.operate.export.businessType,业务类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1915,1915,log.operate.export.method,操作方法,i18n_zh,,,1,supervisor,1.70E+12,,0,
1916,1916,log.operate.export.requestMethod,请求方式 ,i18n_zh,,,1,supervisor,1.70E+12,,0,
1917,1917,log.operate.export.operatorType,操作类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1918,1918,log.operate.export.operName,操作人员,i18n_zh,,,1,supervisor,1.70E+12,,0,
1919,1919,log.operate.export.deptName,操作人员部门名称,i18n_zh,,,1,supervisor,1.70E+12,,0,
1920,1920,log.operate.export.url,请求链接地址,i18n_zh,,,1,supervisor,1.70E+12,,0,
1921,1921,log.operate.export.ip,请求主机 ,i18n_zh,,,1,supervisor,1.70E+12,,0,
1922,1922,log.operate.export.location,请求地址,i18n_zh,,,1,supervisor,1.70E+12,,0,
1923,1923,log.operate.export.param,请求参数,i18n_zh,,,1,supervisor,1.70E+12,,0,
1924,1924,log.operate.export.msg,操作信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1925,1925,log.operate.export.status,操作状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1926,1926,log.operate.export.costTime,消耗时间(毫秒),i18n_zh,,,1,supervisor,1.70E+12,,0,
1927,1927,log.operate.export.operTime,操作时间,i18n_zh,,,1,supervisor,1.70E+12,,0,
1928,1928,log.login.export.id,记录编号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1929,1929,log.login.export.userName,登录账号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1930,1930,log.login.export.status,登录状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
1931,1931,log.login.export.ip,登录地址,i18n_zh,,,1,supervisor,1.70E+12,,0,
1932,1932,log.login.export.location,登录地点,i18n_zh,,,1,supervisor,1.70E+12,,0,
1933,1933,log.login.export.browser,浏览器,i18n_zh,,,1,supervisor,1.70E+12,,0,
1934,1934,log.login.export.os,操作系统,i18n_zh,,,1,supervisor,1.70E+12,,0,
1935,1935,log.login.export.msg,登录信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1936,1936,log.login.export.time,登录时间,i18n_zh,,,1,supervisor,1.70E+12,,0,
1937,1937,trace.tcpdump.noData, 找不到 {type} {id} 对应网元信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1938,1938,register.errUsername,账号不能以数字开头可包含大写小写字母数字且不少于5位,i18n_zh,,,1,supervisor,1.70E+12,,0,
1939,1939,register.errPasswd,登录密码至少包含大小写字母、数字、特殊符号且不少于6位,i18n_zh,,,1,supervisor,1.70E+12,,0,
1940,1940,register.errPasswdNotEq,用户确认输入密码不一致,i18n_zh,,,1,supervisor,1.70E+12,,0,
1941,1941,register.success,注册成功,i18n_zh,,,1,supervisor,1.70E+12,,0,
1942,1942,register.successMsg,{name} 注册成功 {id},i18n_zh,,,1,supervisor,1.70E+12,,0,
1943,1943,log.operate.title.sysJobLog,调度任务日志,i18n_zh,,,1,supervisor,1.70E+12,,0,
1944,1944,log.operate.title.sysJob,调度任务,i18n_zh,,,1,supervisor,1.70E+12,,0,
1945,1945,log.operate.title.tcpdump,信令抓包,i18n_zh,,,1,supervisor,1.70E+12,,0,
1946,1946,log.operate.title.sysConfig,参数配置,i18n_zh,,,1,supervisor,1.70E+12,,0,
1947,1947,log.operate.title.sysDept,部门,i18n_zh,,,1,supervisor,1.70E+12,,0,
1948,1948,log.operate.title.sysDictData,字典数据,i18n_zh,,,1,supervisor,1.70E+12,,0,
1949,1949,log.operate.title.sysDictType,字典类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1950,1950,log.operate.title.sysMenu,菜单,i18n_zh,,,1,supervisor,1.70E+12,,0,
1951,1951,log.operate.title.sysPost,岗位,i18n_zh,,,1,supervisor,1.70E+12,,0,
1952,1952,log.operate.title.sysProfile,个人信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1953,1953,log.operate.title.sysProfileAvatar,个人头像,i18n_zh,,,1,supervisor,1.70E+12,,0,
1954,1954,log.operate.title.sysRole,角色,i18n_zh,,,1,supervisor,1.70E+12,,0,
1955,1955,log.operate.title.sysUser,用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
1956,1956,log.operate.title.sysLogOper,操作日志记录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1957,1957,log.operate.title.sysLogLogin,登录日志记录,i18n_zh,,,1,supervisor,1.70E+12,,0,
1958,1958,login.errNameOrPasswd,用户不存在或密码错误,i18n_zh,,,1,supervisor,1.70E+12,,0,
1959,1959,login.errDelFlag,对不起,您的账号已被删除,i18n_zh,,,1,supervisor,1.70E+12,,0,
1960,1960,login.errStatus,对不起,您的帐户已被禁用,i18n_zh,,,1,supervisor,1.70E+12,,0,
1961,1961,login.errRetryPasswd,密码输入错误多次,帐户已被锁定,i18n_zh,,,1,supervisor,1.70E+12,,0,
1962,1962,captcha.err,验证码错误,i18n_zh,,,1,supervisor,1.70E+12,,0,
1963,1963,captcha.errValid,验证码已失效,i18n_zh,,,1,supervisor,1.70E+12,,0,
1964,1964,app.common.noUaOsBrowser,未知 未知,i18n_zh,,,1,supervisor,1.70E+12,,0,
1965,1965,app.common.noIPregion,内网,i18n_zh,,,1,supervisor,1.70E+12,,0,
1966,1966,app.common.unknown,未知,i18n_zh,,,1,supervisor,1.70E+12,,0,
1967,1967,app.common.noNEInfo,未找到匹配网元信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
1968,1968,ne.udm.errImportUserAuthFileFormat,"请上传.csv或.txt的格式文件。英文逗号分割txt格式imsi, ki, algo, amf, opc",i18n_zh,,,1,supervisor,1.70E+12,,0,
1969,1969,ne.udm.errExportType,导出文件类型支持CSV和txt,i18n_zh,,,1,supervisor,1.70E+12,,0,
1970,1970,ne.udm.errImportUserSubFileFormat,"请上传.csv或.txt的格式文件。英文逗号分割txt格式imsi, msisdn, ambr, nssai, arfb, sar, rat, cn, smf_sel, sm_dat, eps_dat",i18n_zh,,,1,supervisor,1.70E+12,,0,
1971,1971,log.operate.title.udmAuth,UDM鉴权用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
1972,1972,log.operate.title.udmSub,UDM签约用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
1973,1973,dictType.active_alarm_type,活动告警类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1974,1974,dictType.active_alarm_type_remark,活动告警类型列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1975,1975,dictData.active_alarm_type.communication,通信告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1976,1976,dictData.active_alarm_type.equipment,设备告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1977,1977,dictData.active_alarm_type.processing,处理错误,i18n_zh,,,1,supervisor,1.70E+12,,0,
1978,1978,dictData.active_alarm_type.environmental,环境告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1979,1979,dictData.active_alarm_type.qualityOfService,服务质量,i18n_zh,,,1,supervisor,1.70E+12,,0,
1980,1980,dictType.active_clear_type,告警清除类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1981,1981,dictType.active_clear_type_remark,告警清除类型列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1982,1982,dictData.active_clear_type.notCleared,告警未清除,i18n_zh,,,1,supervisor,1.70E+12,,0,
1983,1983,dictData.active_clear_type.hand,手动清除,i18n_zh,,,1,supervisor,1.70E+12,,0,
1984,1984,dictData.active_clear_type.auto,自动清除,i18n_zh,,,1,supervisor,1.70E+12,,0,
1985,1985,dictType.active_ack_state,告警确认类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
1986,1986,dictType.active_ack_state_remark,告警确认类型列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1987,1987,dictData.active_ack_state.unconfirmed,未确认,i18n_zh,,,1,supervisor,1.70E+12,,0,
1988,1988,dictData.active_ack_state.confirmed,已确认,i18n_zh,,,1,supervisor,1.70E+12,,0,
1989,1989,dictType.active_alarm_severity,严重程度,i18n_zh,,,1,supervisor,1.70E+12,,0,
1990,1990,dictType.active_alarm_severity_remark,严重程度列表,i18n_zh,,,1,supervisor,1.70E+12,,0,
1991,1991,dictData.active_alarm_severity.critical,严重告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1992,1992,dictData.active_alarm_severity.major,主要告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1993,1993,dictData.active_alarm_severity.minor,次要告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1994,1994,dictData.active_alarm_severity.warning,警告告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1995,1995,dictData.active_alarm_severity.event,事件告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
1996,1996,config.sys.officialUrl,系统设置-官网链接,i18n_zh,,,1,supervisor,1.70E+12,,0,
1997,1997,config.sys.helpDoc,系统设置-系统使用文档,i18n_zh,,,1,supervisor,1.70E+12,,0,
1998,1998,config.sys.officialUrlRemark,默认无地址用#号,i18n_zh,,,1,supervisor,1.70E+12,,0,
1999,1999,config.sys.helpDocRemark,静态文件目录地址,使用{language}区分语言文件,i18n_zh,,,1,supervisor,1.70E+12,,0,
2000,2000,log.operate.title.neAction,网元处理,i18n_zh,,,1,supervisor,1.70E+12,,0,
2001,2001,log.operate.title.helpDoc,系统使用文档,i18n_zh,,,1,supervisor,1.70E+12,,0,
2002,2002,menu.ueUser.n3iwf,N3IWF在线用户,i18n_zh,,,1,supervisor,1.70E+12,,0,
2003,2003,menu.ueUser.pcf,用户策略控制信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
2004,2004,menu.system.user.editRole,修改用户角色,i18n_zh,,,1,supervisor,1.70E+12,,0,
2005,2005,config.sys.i18nOpen,国际化切换,i18n_zh,,,1,supervisor,1.70E+12,,0,
2006,2006,config.sys.i18nDefault,国际化默认语言,i18n_zh,,,1,supervisor,1.70E+12,,0,
2007,2007,user.export.role,用户角色,i18n_zh,,,1,supervisor,1.70E+12,,0,
2008,2008,menu.system.setting.i18n,国际化切换,i18n_zh,,,1,supervisor,1.70E+12,,0,
2009,2009,menu.system.setting.i18nRemark,国际化多语言的切换选择,i18n_zh,,,1,supervisor,1.70E+12,,0,
2010,2010,dictType.index_status,首页状态,i18n_zh,,,1,supervisor,1.70E+12,,0,
2011,2011,dictType.index_status_remark,首页的网元状态颜色,i18n_zh,,,1,supervisor,1.70E+12,,0,
2012,2012,dictType.index_status.normal,正常,i18n_zh,,,1,supervisor,1.70E+12,,0,
2013,2013,dictType.index_status.abnormal,异常,i18n_zh,,,1,supervisor,1.70E+12,,0,
2014,2014,menu.log.neFile,网元日志文件,i18n_zh,,,1,supervisor,1.70E+12,,0,
2015,2015,job.deleteExpiredNeStateRecord,删除过期网元状态记录,i18n_zh,,,1,supervisor,1.70E+12,,0,
2016,2016,job.deleteExpiredNeStateRecordRemark,"定期删除过期的网元状态记录, 默认保留{duration}天",i18n_zh,,,1,supervisor,1.70E+12,,0,
2017,2017,job.getStateFromNE,获取网元状态信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
2018,2018,job.getStateFromNERemark,获取所有网元状态信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
2019,2019,job.genNeStateAlarm,网元健康状态巡检,i18n_zh,,,1,supervisor,1.70E+12,,0,
2020,2020,job.genNeStateAlarmRemark,"网元健康状态巡检,异常时产生告警",i18n_zh,,,1,supervisor,1.70E+12,,0,
2021,2021,menu.neUser.nssf,NSSF在线订阅数,i18n_zh,,,1,supervisor,1.70E+12,,0,
2022,2022,menu.neUser.nssfAmf,NSSF可用的注册AMF,i18n_zh,,,1,supervisor,1.70E+12,,0,
2023,2023,menu.monitor.topology,拓扑信息,i18n_zh,,,1,supervisor,1.70E+12,,0,
2024,2024,menu.monitor.topologyBuild,拓扑图组编辑,i18n_zh,,,1,supervisor,1.70E+12,,0,
2025,2025,log.operate.title.chartGraph,拓扑图组,i18n_zh,,,1,supervisor,1.70E+12,,0,
2026,2026,menu.monitor.topologyArchitecture,网元拓扑组网,i18n_zh,,,1,supervisor,1.70E+12,,0,
2027,2027,menu.alarm,告警,i18n_zh,,,1,supervisor,1.70E+12,,0,
2028,2028,menu.topology,拓扑,i18n_zh,,,1,supervisor,1.70E+12,,0,
2029,2029,config.sys.lockTime,系统设置-锁屏超时时长,i18n_zh,,,1,supervisor,1.70E+12,,0,
2030,2030,config.sys.lockTimeRemark,"无操作时锁屏超时时长,单位(秒)",i18n_zh,,,1,supervisor,1.70E+12,,0,
2031,2031,sys.account.captchaType,账号自助-验证码类型,i18n_zh,,,1,supervisor,1.70E+12,,0,
2032,2032,sys.account.captchaTypeRemark,使用验证码类型math数值计算char字符验证,i18n_zh,,,1,supervisor,1.70E+12,,0,
2033,2033,menu.dashboard,仪表盘,i18n_zh,,,1,supervisor,1.70555E+12,,0,
2034,2034,menu.dashboard.overview,总览,i18n_zh,,,1,supervisor,1.70555E+12,,0,
2035,2035,menu.dashboard.cdr,CDR,i18n_zh,,,1,supervisor,1.70555E+12,,0,
1 dict_code dict_sort dict_label dict_value dict_type tag_class tag_type status create_by create_time update_by update_time remark
2 1000 1000 i18n 中文 i18n_zh 1 supervisor 1.70E+12 0
3 1001 1001 hello 你好 i18n_zh 1 supervisor 1.70E+12 0
4 1002 1002 menu.system 系统 i18n_zh 1 supervisor 1.70E+12 0
5 1003 1003 menu.monitor 监控 i18n_zh 1 supervisor 1.70E+12 0
6 1004 1004 menu.tools 工具 i18n_zh 1 supervisor 1.70E+12 0
7 1005 1005 menu.config 配置 i18n_zh 1 supervisor 1.70E+12 0
8 1006 1006 menu.ueUser 终端 i18n_zh 1 supervisor 1.70E+12 0
9 1007 1007 menu.systemRemark 系统管理目录 i18n_zh 1 supervisor 1.70E+12 0
10 1008 1008 menu.monitorRemark 系统监控目录 i18n_zh 1 supervisor 1.70E+12 0
11 1009 1009 menu.toolsRemark 系统工具目录 i18n_zh 1 supervisor 1.70E+12 0
12 1010 1010 menu.configRemark OMC配置管理目录 i18n_zh 1 supervisor 1.70E+12 0
13 1011 1011 menu.ueUserRemark 网元终端信息目录 i18n_zh 1 supervisor 1.70E+12 0
14 1012 1012 menu.security.user 用户管理 i18n_zh 1 supervisor 1.70E+12 0
15 1013 1013 menu.security.role 角色管理 i18n_zh 1 supervisor 1.70E+12 0
16 1014 1014 menu.security.roleUser 分配角色 i18n_zh 1 supervisor 1.70E+12 0
17 1015 1015 menu.system.menu 菜单管理 i18n_zh 1 supervisor 1.70E+12 0
18 1016 1016 menu.security.dept 部门管理 i18n_zh 1 supervisor 1.70E+12 0
19 1017 1017 menu.security.post 岗位管理 i18n_zh 1 supervisor 1.70E+12 0
20 1018 1018 menu.system.dictType 字典管理 i18n_zh 1 supervisor 1.70E+12 0
21 1019 1019 menu.system.dictData 字典数据 i18n_zh 1 supervisor 1.70E+12 0
22 1020 1020 menu.system.paramSet 参数设置 i18n_zh 1 supervisor 1.70E+12 0
23 1021 1021 menu.system.systemLog 系统日志 i18n_zh 1 supervisor 1.70E+12 0
24 1022 1022 menu.system.systemInfo 系统信息 i18n_zh 1 supervisor 1.70E+12 0
25 1023 1023 menu.system.cacheInfo 缓存信息 i18n_zh 1 supervisor 1.70E+12 0
26 1024 1024 menu.system.cache 缓存管理 i18n_zh 1 supervisor 1.70E+12 0
27 1025 1025 menu.security.onlineUser 在线用户 i18n_zh 1 supervisor 1.70E+12 0
28 1026 1026 menu.system.job 调度任务 i18n_zh 1 supervisor 1.70E+12 0
29 1027 1027 menu.system.jobLog 调度日志 i18n_zh 1 supervisor 1.70E+12 0
30 1028 1028 menu.tools.help 帮助文档 i18n_zh 1 supervisor 1.70E+12 0
31 1029 1029 menu.log.operat 操作日志 i18n_zh 1 supervisor 1.70E+12 0
32 1030 1030 menu.log.login 安全日志 i18n_zh 1 supervisor 1.70E+12 0
33 1031 1031 menu.security.userRemark 用户管理菜单 i18n_zh 1 supervisor 1.70E+12 0
34 1032 1032 menu.security.roleRemark 角色管理菜单 i18n_zh 1 supervisor 1.70E+12 0
35 1033 1033 menu.security.roleUserRemark 分配角色内嵌隐藏菜单 i18n_zh 1 supervisor 1.70E+12 0
36 1034 1034 menu.system.menuRemark 菜单管理菜单 i18n_zh 1 supervisor 1.70E+12 0
37 1035 1035 menu.security.deptRemark 部门管理菜单 i18n_zh 1 supervisor 1.70E+12 0
38 1036 1036 menu.security.postRemark 岗位管理菜单 i18n_zh 1 supervisor 1.70E+12 0
39 1037 1037 menu.system.dictTypeRemark 字典管理菜单 i18n_zh 1 supervisor 1.70E+12 0
40 1038 1038 menu.system.dictDataRemark 字典数据内嵌隐藏菜单 i18n_zh 1 supervisor 1.70E+12 0
41 1039 1039 menu.system.paramSetRemark 参数设置菜单 i18n_zh 1 supervisor 1.70E+12 0
42 1040 1040 menu.system.systemLogRemark 系统日志目录 i18n_zh 1 supervisor 1.70E+12 0
43 1041 1041 menu.system.systemInfoRemark 系统信息菜单 i18n_zh 1 supervisor 1.70E+12 0
44 1042 1042 menu.system.cacheInfoRemark 缓存信息菜单 i18n_zh 1 supervisor 1.70E+12 0
45 1043 1043 menu.system.cacheRemark 缓存列表菜单 i18n_zh 1 supervisor 1.70E+12 0
46 1044 1044 menu.security.onlineUserRemark 在线用户菜单 i18n_zh 1 supervisor 1.70E+12 0
47 1045 1045 menu.system.jobRemark 调度任务菜单 i18n_zh 1 supervisor 1.70E+12 0
48 1046 1046 menu.system.jobLogRemark 调度日志内嵌隐藏菜单 i18n_zh 1 supervisor 1.70E+12 0
49 1047 1047 menu.tools.helpRemark 帮助文档菜单 i18n_zh 1 supervisor 1.70E+12 0
50 1048 1048 menu.log.operatRemark 操作日志菜单 i18n_zh 1 supervisor 1.70E+12 0
51 1049 1049 menu.log.loginRemark 登录日志菜单 i18n_zh 1 supervisor 1.70E+12 0
52 1050 1050 menu.common.query 查询 i18n_zh 1 supervisor 1.70E+12 0
53 1051 1051 menu.common.add 新增 i18n_zh 1 supervisor 1.70E+12 0
54 1052 1052 menu.common.edit 修改 i18n_zh 1 supervisor 1.70E+12 0
55 1053 1053 menu.common.delete 删除 i18n_zh 1 supervisor 1.70E+12 0
56 1054 1054 menu.common.export 导出 i18n_zh 1 supervisor 1.70E+12 0
57 1055 1055 menu.common.import 导入 i18n_zh 1 supervisor 1.70E+12 0
58 1056 1056 menu.common.reset 重置 i18n_zh 1 supervisor 1.70E+12 0
59 1057 1057 menu.common.unlock 账户解锁 i18n_zh 1 supervisor 1.70E+12 0
60 1058 1058 menu.forcedQuit.batch 批量强退 i18n_zh 1 supervisor 1.70E+12 0
61 1059 1059 menu.forcedQuit.single 单条强退 i18n_zh 1 supervisor 1.70E+12 0
62 1060 1060 menu.ueUser.authUDM UDM鉴权用户 i18n_zh 1 supervisor 1.70E+12 0
63 1061 1061 menu.ueUser.subUDM UDM签约用户 i18n_zh 1 supervisor 1.70E+12 0
64 1062 1062 menu.ueUser.authUDMRemark UDM鉴权用户菜单 i18n_zh 1 supervisor 1.70E+12 0
65 1063 1063 menu.ueUser.subUDMRemark UDM签约用户菜单 i18n_zh 1 supervisor 1.70E+12 0
66 1064 1064 menu.config.neManage 网元管理 i18n_zh 1 supervisor 1.70E+12 0
67 1065 1065 menu.config.configNE 参数配置Original i18n_zh 1 supervisor 1.70E+12 0
68 1066 1066 menu.config.neManageRemark 网元管理菜单 i18n_zh 1 supervisor 1.70E+12 0
69 1067 1067 menu.config.configNERemark 参数配置菜单 i18n_zh 1 supervisor 1.70E+12 0
70 1068 1068 menu.config.backupManage 备份管理 i18n_zh 1 supervisor 1.70E+12 0
71 1069 1069 menu.config.softwareManage 软件管理 i18n_zh 1 supervisor 1.70E+12 0
72 1070 1070 menu.ueUser.onlineIMS IMS在线用户 i18n_zh 1 supervisor 1.70E+12 0
73 1071 1071 menu.ueUser.onlineUE UE在线信息 i18n_zh 1 supervisor 1.70E+12 0
74 1072 1072 menu.ueUser.base5G 基站信息 i18n_zh 1 supervisor 1.70E+12 0
75 1073 1073 menu.trace 跟踪 i18n_zh 1 supervisor 1.70E+12 0
76 1074 1074 menu.trace.task 跟踪任务 i18n_zh 1 supervisor 1.70E+12 0
77 1075 1075 menu.trace.analysis 信令分析 i18n_zh 1 supervisor 1.70E+12 0
78 1076 1076 menu.trace.pcap 信令抓包 i18n_zh 1 supervisor 1.70E+12 0
79 1077 1077 menu.fault 监控 i18n_zh 1 supervisor 1.70E+12 0
80 1078 1078 menu.config.backupManageRemark 备份管理菜单 i18n_zh 1 supervisor 1.70E+12 0
81 1079 1079 menu.config.softwareManageRemark 软件管理菜单 i18n_zh 1 supervisor 1.70E+12 0
82 1080 1080 menu.ueUser.onlineIMSRemark IMS在线用户菜单 i18n_zh 1 supervisor 1.70E+12 0
83 1081 1081 menu.ueUser.onlineUERemark UE在线信息菜单 i18n_zh 1 supervisor 1.70E+12 0
84 1082 1082 menu.ueUser.base5GRemark 5G基站信息菜单 i18n_zh 1 supervisor 1.70E+12 0
85 1083 1083 menu.traceRemark 跟踪管理目录 i18n_zh 1 supervisor 1.70E+12 0
86 1084 1084 menu.trace.taskRemark 跟踪任务菜单 i18n_zh 1 supervisor 1.70E+12 0
87 1085 1085 menu.trace.analysisRemark 信令分析菜单 i18n_zh 1 supervisor 1.70E+12 0
88 1086 1086 menu.trace.pcapRemark 信令抓包菜单 i18n_zh 1 supervisor 1.70E+12 0
89 1087 1087 menu.faultRemark 故障管理目录 i18n_zh 1 supervisor 1.70E+12 0
90 1088 1088 menu.fault.active 活动告警 i18n_zh 1 supervisor 1.70E+12 0
91 1089 1089 menu.log 日志 i18n_zh 1 supervisor 1.70E+12 0
92 1090 1090 menu.log.operatOld 操作日志(旧) i18n_zh 1 supervisor 1.70E+12 0
93 1091 1091 menu.log.mml MML日志 i18n_zh 1 supervisor 1.70E+12 0
94 1092 1092 menu.log.alarm 告警日志 i18n_zh 1 supervisor 1.70E+12 0
95 1093 1093 menu.log.securityOld 安全日志(旧) i18n_zh 1 supervisor 1.70E+12 0
96 1094 1094 menu.log.forwarding 告警前转日志 i18n_zh 1 supervisor 1.70E+12 0
97 1095 1095 menu.log.set 日志设置 i18n_zh 1 supervisor 1.70E+12 0
98 1096 1096 menu.monitor.sessionUser 用户会话 i18n_zh 1 supervisor 1.70E+12 0
99 1097 1097 menu.fault.history 历史告警 i18n_zh 1 supervisor 1.70E+12 0
100 1098 1098 menu.fault.set 设置 i18n_zh 1 supervisor 1.70E+12 0
101 1099 1099 menu.perf 性能 i18n_zh 1 supervisor 1.70E+12 0
102 1100 1100 menu.fault.activemRemark 活动告警菜单 i18n_zh 1 supervisor 1.70E+12 0
103 1101 1101 menu.logRemark 日志管理目录 i18n_zh 1 supervisor 1.70E+12 0
104 1102 1102 menu.log.operatOldRemark 操作日志旧layui菜单 i18n_zh 1 supervisor 1.70E+12 0
105 1103 1103 menu.log.mmlRemark 操作MML日志 i18n_zh 1 supervisor 1.70E+12 0
106 1104 1104 menu.log.alarmRemark 告警日志菜单 i18n_zh 1 supervisor 1.70E+12 0
107 1105 1105 menu.log.securityOldRemark 安全日志旧layui菜单 i18n_zh 1 supervisor 1.70E+12 0
108 1106 1106 menu.log.forwardingRemark 告警前转日志菜单 i18n_zh 1 supervisor 1.70E+12 0
109 1107 1107 menu.log.setRemark 日志设置菜单 i18n_zh 1 supervisor 1.70E+12 0
110 1108 1108 menu.monitor.sessionUserRemark 用户会话旧layui菜单 i18n_zh 1 supervisor 1.70E+12 0
111 1109 1109 menu.fault.historyRemark 历史告警菜单 i18n_zh 1 supervisor 1.70E+12 0
112 1110 1110 menu.fault.setRemark 故障通用设置菜单 i18n_zh 1 supervisor 1.70E+12 0
113 1111 1111 menu.perfRemark 性能目录 i18n_zh 1 supervisor 1.70E+12 0
114 1112 1112 menu.perf.task 任务管理 i18n_zh 1 supervisor 1.70E+12 0
115 1113 1113 menu.perf.data 性能数据 i18n_zh 1 supervisor 1.70E+12 0
116 1114 1114 menu.perf.report 性能报表 i18n_zh 1 supervisor 1.70E+12 0
117 1115 1115 menu.perf.threshold 性能门限 i18n_zh 1 supervisor 1.70E+12 0
118 1116 1116 menu.perf.kpi 黄金指标 i18n_zh 1 supervisor 1.70E+12 0
119 1117 1117 menu.perf.customTarget 自定义指标 i18n_zh 1 supervisor 1.70E+12 0
120 1118 1118 menu.perf.set 性能通用设置 i18n_zh 1 supervisor 1.70E+12 0
121 1119 1119 menu.mml MML i18n_zh 1 supervisor 1.70E+12 0
122 1120 1120 menu.mml.ne 网元操作 i18n_zh 1 supervisor 1.70E+12 0
123 1121 1121 menu.mml.udm UDM操作 i18n_zh 1 supervisor 1.70E+12 0
124 1122 1122 menu.mml.set MML设置 i18n_zh 1 supervisor 1.70E+12 0
125 1123 1123 menu.mml.omc OMC操作 i18n_zh 1 supervisor 1.70E+12 0
126 1124 1124 menu.perf.taskRemark 任务管理菜单 i18n_zh 1 supervisor 1.70E+12 0
127 1125 1125 menu.perf.dataRemark 性能数据菜单 i18n_zh 1 supervisor 1.70E+12 0
128 1126 1126 menu.perf.reportRemark 性能报表菜单 i18n_zh 1 supervisor 1.70E+12 0
129 1127 1127 menu.perf.thresholdRemark 性能门限菜单 i18n_zh 1 supervisor 1.70E+12 0
130 1128 1128 menu.perf.kpiRemark 黄金指标菜单 i18n_zh 1 supervisor 1.70E+12 0
131 1129 1129 menu.perf.customTargetRemark 自定义指标菜单 i18n_zh 1 supervisor 1.70E+12 0
132 1130 1130 menu.perf.setRemark 性能通用设置菜单 i18n_zh 1 supervisor 1.70E+12 0
133 1131 1131 menu.mmlRemark MML管理目录 i18n_zh 1 supervisor 1.70E+12 0
134 1132 1132 menu.mml.neRemark 网元操作菜单 i18n_zh 1 supervisor 1.70E+12 0
135 1133 1133 menu.mml.udmRemark 网元UDM用户数据菜单 i18n_zh 1 supervisor 1.70E+12 0
136 1134 1134 menu.mml.setRemark MML设置菜单 i18n_zh 1 supervisor 1.70E+12 0
137 1135 1135 menu.mml.omcRemark OMC操作菜单 i18n_zh 1 supervisor 1.70E+12 0
138 1136 1136 menu.config.licenseManage 许可证管理 i18n_zh 1 supervisor 1.70E+12 0
139 1137 1137 menu.security 安全 i18n_zh 1 supervisor 1.70E+12 0
140 1138 1138 menu.system.systemSet 系统设置 i18n_zh 1 supervisor 1.70E+12 0
141 1139 1139 menu.system.systemResource 系统资源 i18n_zh 1 supervisor 1.70E+12 0
142 1140 1140 menu.config.configNEForm 参数配置Form i18n_zh 1 supervisor 1.70E+12 0
143 1141 1141 menu.config.configNETree 参数配置Tree i18n_zh 1 supervisor 1.70E+12 0
144 1142 1142 menu.config.configNETreeTable 参数配置 i18n_zh 1 supervisor 1.70E+12 0
145 1143 1143 menu.config.licenseManageRemark 许可证管理菜单 i18n_zh 1 supervisor 1.70E+12 0
146 1144 1144 menu.securityRemark 安全管理目录 i18n_zh 1 supervisor 1.70E+12 0
147 1145 1145 menu.system.systemSetRemark 系统设置菜单 i18n_zh 1 supervisor 1.70E+12 0
148 1146 1146 menu.system.systemResourceRemark 系统资源 cpu io network菜单 i18n_zh 1 supervisor 1.70E+12 0
149 1147 1147 menu.config.configNEFormRemark 参数配置Form菜单 i18n_zh 1 supervisor 1.70E+12 0
150 1148 1148 menu.config.configNETreeRemark 参数配置Tree菜单 i18n_zh 1 supervisor 1.70E+12 0
151 1149 1149 menu.config.configNETreeTableRemark 参数配置TreeTable菜单 i18n_zh 1 supervisor 1.70E+12 0
152 1150 1150 menu.noData 没有可访问菜单数据! i18n_zh 1 supervisor 1.70E+12 0
153 1151 1151 menu.errNameExists 操作菜单【{name}】失败,菜单名称已存在 i18n_zh 1 supervisor 1.70E+12 0
154 1152 1152 menu.errPathExists 操作菜单【{name}】失败,菜单路由地址已存在 i18n_zh 1 supervisor 1.70E+12 0
155 1153 1153 menu.errFramePath 操作菜单【{name}】失败,非内部地址请以http(s)://开头 i18n_zh 1 supervisor 1.70E+12 0
156 1154 1154 menu.errParentStatus 上级菜单未启用! i18n_zh 1 supervisor 1.70E+12 0
157 1155 1155 menu.errHasChildUse 操作菜单【{name}】失败,存在使用子菜单数:{num} i18n_zh 1 supervisor 1.70E+12 0
158 1156 1156 menu.errHasRoleUse 操作菜单【{name}】失败,菜单已分配给角色数:{num} i18n_zh 1 supervisor 1.70E+12 0
159 1400 1400 dictData.sex.un 未选择 i18n_zh 1 supervisor 1.70E+12 0
160 1401 1401 dictData.sex.male i18n_zh 1 supervisor 1.70E+12 0
161 1402 1402 dictData.sex.female i18n_zh 1 supervisor 1.70E+12 0
162 1403 1403 dictData.show 显示 i18n_zh 1 supervisor 1.70E+12 0
163 1404 1404 dictData.hide 隐藏 i18n_zh 1 supervisor 1.70E+12 0
164 1405 1405 dictData.normal 正常 i18n_zh 1 supervisor 1.70E+12 0
165 1406 1406 dictData.disable 停用 i18n_zh 1 supervisor 1.70E+12 0
166 1407 1407 dictData.yes i18n_zh 1 supervisor 1.70E+12 0
167 1408 1408 dictData.no i18n_zh 1 supervisor 1.70E+12 0
168 1409 1409 dictData.success 成功 i18n_zh 1 supervisor 1.70E+12 0
169 1410 1410 dictData.fail 失败 i18n_zh 1 supervisor 1.70E+12 0
170 1411 1411 dictData.jobStatus.normal 正常 i18n_zh 1 supervisor 1.70E+12 0
171 1412 1412 dictData.jobStatus.pause 暂停 i18n_zh 1 supervisor 1.70E+12 0
172 1413 1413 dictData.jobGroup.Default 默认 i18n_zh 1 supervisor 1.70E+12 0
173 1414 1414 dictData.jobGroup.System 系统 i18n_zh 1 supervisor 1.70E+12 0
174 1415 1415 dictData.operType.other 其他 i18n_zh 1 supervisor 1.70E+12 0
175 1416 1416 dictData.operType.add 新增 i18n_zh 1 supervisor 1.70E+12 0
176 1417 1417 dictData.operType.edit 修改 i18n_zh 1 supervisor 1.70E+12 0
177 1418 1418 dictData.operType.delete 删除 i18n_zh 1 supervisor 1.70E+12 0
178 1419 1419 dictData.operType.auth 授权 i18n_zh 1 supervisor 1.70E+12 0
179 1420 1420 dictData.operType.export 导出 i18n_zh 1 supervisor 1.70E+12 0
180 1421 1421 dictData.operType.import 导入 i18n_zh 1 supervisor 1.70E+12 0
181 1422 1422 dictData.operType.forced quit 强退 i18n_zh 1 supervisor 1.70E+12 0
182 1423 1423 dictData.operType.clear 清空 i18n_zh 1 supervisor 1.70E+12 0
183 1424 1424 dictData.trace.interface 接口跟踪 i18n_zh 1 supervisor 1.70E+12 0
184 1425 1425 dictData.trace.device 设备跟踪 i18n_zh 1 supervisor 1.70E+12 0
185 1426 1426 dictData.trace.user 用户跟踪 i18n_zh 1 supervisor 1.70E+12 0
186 1427 1427 dictData.logType.download 下载 i18n_zh 1 supervisor 1.70E+12 0
187 1428 1428 dictData.logType.activation 激活 i18n_zh 1 supervisor 1.70E+12 0
188 1429 1429 dictData.logType.add 新增 i18n_zh 1 supervisor 1.70E+12 0
189 1430 1430 dictData.logType.other 其他 i18n_zh 1 supervisor 1.70E+12 0
190 1431 1431 dictData.logType.back 回退 i18n_zh 1 supervisor 1.70E+12 0
191 1432 1432 dictData.logType.delete 删除 i18n_zh 1 supervisor 1.70E+12 0
192 1433 1433 dictData.logType.distribute 分配 i18n_zh 1 supervisor 1.70E+12 0
193 1434 1434 dictData.logType.export 导出 i18n_zh 1 supervisor 1.70E+12 0
194 1435 1435 dictData.logType.query 查询 i18n_zh 1 supervisor 1.70E+12 0
195 1436 1436 dictData.logType.setup 设置 i18n_zh 1 supervisor 1.70E+12 0
196 1437 1437 dictData.logType.update 更新 i18n_zh 1 supervisor 1.70E+12 0
197 1438 1438 dictData.logType.upload 上传 i18n_zh 1 supervisor 1.70E+12 0
198 1439 1439 dictData.logType.view 查看 i18n_zh 1 supervisor 1.70E+12 0
199 1440 1440 dictData.logType.login 登录 i18n_zh 1 supervisor 1.70E+12 0
200 1441 1441 dictData.logType.logout 登出 i18n_zh 1 supervisor 1.70E+12 0
201 1442 1442 dictData.securityLogType.add 新增 i18n_zh 1 supervisor 1.70E+12 0
202 1443 1443 dictData.securityLogType.update 更新 i18n_zh 1 supervisor 1.70E+12 0
203 1444 1444 dictData.securityLogType.delete 删除 i18n_zh 1 supervisor 1.70E+12 0
204 1445 1445 dictData.securityLogType.lock 锁定 i18n_zh 1 supervisor 1.70E+12 0
205 1446 1446 dictData.securityLogType.unlock 解锁 i18n_zh 1 supervisor 1.70E+12 0
206 1447 1447 dictData.securityLogType.reset 重置 i18n_zh 1 supervisor 1.70E+12 0
207 1448 1448 dictData.securityLogType.deactivate 停用 i18n_zh 1 supervisor 1.70E+12 0
208 1449 1449 dictData.jobSaveLog.no 不记录 i18n_zh 1 supervisor 1.70E+12 0
209 1450 1450 dictData.jobSaveLog.yes 记录 i18n_zh 1 supervisor 1.70E+12 0
210 1451 1451 dictData.neVersionStatus.upload 已上传 i18n_zh 1 supervisor 1.70E+12 0
211 1452 1452 dictData.neVersionStatus.inactive 未激活 i18n_zh 1 supervisor 1.70E+12 0
212 1453 1453 dictData.neVersionStatus.active 已激活 i18n_zh 1 supervisor 1.70E+12 0
213 1454 1454 dictData.alarmStatus.history 历史告警 i18n_zh 1 supervisor 1.70E+12 0
214 1455 1455 dictData.alarmStatus.active 活动告警 i18n_zh 1 supervisor 1.70E+12 0
215 1456 1456 dictData.export.code 数据代码 i18n_zh 1 supervisor 1.70E+12 0
216 1457 1457 dictData.export.sort 数据排序 i18n_zh 1 supervisor 1.70E+12 0
217 1458 1458 dictData.export.label 数据标签 i18n_zh 1 supervisor 1.70E+12 0
218 1459 1459 dictData.export.value 数据键值 i18n_zh 1 supervisor 1.70E+12 0
219 1460 1460 dictData.export.type 数据排序 i18n_zh 1 supervisor 1.70E+12 0
220 1461 1461 dictData.export.status 数据状态 i18n_zh 1 supervisor 1.70E+12 0
221 1462 1462 dictData.datascope.all 全部数据权限 i18n_zh 1 supervisor 1.70E+12 0
222 1463 1463 dictData.datascope.custom 自定数据权限 i18n_zh 1 supervisor 1.70E+12 0
223 1464 1464 dictData.datascope.dept 部门数据权限 i18n_zh 1 supervisor 1.70E+12 0
224 1465 1465 dictData.datascope.deptAndChid 部门及以下数据权限 i18n_zh 1 supervisor 1.70E+12 0
225 1466 1466 dictData.datascope.self 仅本人数据权限 i18n_zh 1 supervisor 1.70E+12 0
226 1467 1467 dictData.noData 没有可访问字典编码数据! i18n_zh 1 supervisor 1.70E+12 0
227 1468 1468 dictData.errLabelExists 操作数据【{name}】失败,该字典类型下标签名已存在 i18n_zh 1 supervisor 1.70E+12 0
228 1500 1500 dictType.sys_user_sex 用户性别 i18n_zh 1 supervisor 1.70E+12 0
229 1501 1501 dictType.sys_show_hide 菜单状态 i18n_zh 1 supervisor 1.70E+12 0
230 1502 1502 dictType.sys_normal_disable 系统开关 i18n_zh 1 supervisor 1.70E+12 0
231 1503 1503 dictType.sys_job_status 任务状态 i18n_zh 1 supervisor 1.70E+12 0
232 1504 1504 dictType.sys_job_group 任务分组 i18n_zh 1 supervisor 1.70E+12 0
233 1505 1505 dictType.sys_yes_no 系统是否 i18n_zh 1 supervisor 1.70E+12 0
234 1506 1506 dictType.sys_oper_type 操作类型 i18n_zh 1 supervisor 1.70E+12 0
235 1507 1507 dictType.sys_common_status 系统状态 i18n_zh 1 supervisor 1.70E+12 0
236 1508 1508 dictType.trace_type 跟踪类型 i18n_zh 1 supervisor 1.70E+12 0
237 1509 1509 dictType.operation_log_type 操作日志类型 i18n_zh 1 supervisor 1.70E+12 0
238 1510 1510 dictType.alarm_status 告警日志类型 i18n_zh 1 supervisor 1.70E+12 0
239 1511 1511 dictType.security_log_type 安全日志类型 i18n_zh 1 supervisor 1.70E+12 0
240 1512 1512 dictType.ne_version_status 网元软件版本状态 i18n_zh 1 supervisor 1.70E+12 0
241 1513 1513 dictType.i18n_en 多语言-英文 i18n_zh 1 supervisor 1.70E+12 0
242 1514 1514 dictType.i18n_zh 多语言-中文 i18n_zh 1 supervisor 1.70E+12 0
243 1515 1515 dictType.sys_user_sex_remark 用户性别列表 i18n_zh 1 supervisor 1.70E+12 0
244 1516 1516 dictType.sys_show_hide_remark 菜单状态列表 i18n_zh 1 supervisor 1.70E+12 0
245 1517 1517 dictType.sys_normal_disable_remark 系统开关列表 i18n_zh 1 supervisor 1.70E+12 0
246 1518 1518 dictType.sys_job_status_remark 任务状态列表 i18n_zh 1 supervisor 1.70E+12 0
247 1519 1519 dictType.sys_job_group_remark 任务分组列表 i18n_zh 1 supervisor 1.70E+12 0
248 1520 1520 dictType.sys_yes_no_remark 系统是否列表 i18n_zh 1 supervisor 1.70E+12 0
249 1521 1521 dictType.sys_oper_type_remark 操作类型列表 i18n_zh 1 supervisor 1.70E+12 0
250 1522 1522 dictType.sys_common_status_remark 登录状态列表 i18n_zh 1 supervisor 1.70E+12 0
251 1523 1523 dictType.trace_type_remark 跟踪类型 i18n_zh 1 supervisor 1.70E+12 0
252 1524 1524 dictType.operation_log_type_remark 操作日志类型 i18n_zh 1 supervisor 1.70E+12 0
253 1525 1525 dictType.alarm_status_remark alarm_status i18n_zh 1 supervisor 1.70E+12 0
254 1526 1526 dictType.security_log_type_remark 安全日志类型 i18n_zh 1 supervisor 1.70E+12 0
255 1527 1527 dictType.ne_version_status_remark 网元软件版本状态 i18n_zh 1 supervisor 1.70E+12 0
256 1528 1528 dictType.i18n_en_remark Internationalization - English i18n_zh 1 supervisor 1.70E+12 0
257 1529 1529 dictType.i18n_zh_remark Internationalization - Chinese i18n_zh 1 supervisor 1.70E+12 0
258 1530 1530 dictType.export.id 字典编号 i18n_zh 1 supervisor 1.70E+12 0
259 1531 1531 dictType.export.name 字典名称 i18n_zh 1 supervisor 1.70E+12 0
260 1532 1532 dictType.export.type 字典类型 i18n_zh 1 supervisor 1.70E+12 0
261 1533 1533 dictType.export.status 字典状态 i18n_zh 1 supervisor 1.70E+12 0
262 1534 1534 dictType.sys_role_datascope 系统角色数据范围 i18n_zh 1 supervisor 1.70E+12 0
263 1535 1535 dictType.sys_role_datascope_remark 系统角色数据范围映射 i18n_zh 1 supervisor 1.70E+12 0
264 1536 1536 dictType.noData 没有可访问字典类型数据! i18n_zh 1 supervisor 1.70E+12 0
265 1537 1537 dictType.errNameExists 操作字典【{name}】失败,字典名称已存在 i18n_zh 1 supervisor 1.70E+12 0
266 1538 1538 dictType.errTypeExists 操作字典【{name}】失败,字典类型已存在 i18n_zh 1 supervisor 1.70E+12 0
267 1600 1600 dept.root 系统维护部 i18n_zh 1 supervisor 1.70E+12 0
268 1601 1601 dept.root.item1 运维一部 i18n_zh 1 supervisor 1.70E+12 0
269 1602 1602 dept.noData 没有可访问部门数据! i18n_zh 1 supervisor 1.70E+12 0
270 1603 1603 dept.errParentDelFlag 上级部门【{name}】已删除,不允许新增 i18n_zh 1 supervisor 1.70E+12 0
271 1604 1604 dept.errParentStatus 上级部门【{name}】停用,不允许新增 i18n_zh 1 supervisor 1.70E+12 0
272 1605 1605 dept.errNameExists 操作部门【{name}】失败,部门名称已存在 i18n_zh 1 supervisor 1.70E+12 0
273 1606 1606 dept.errParentID 操作部门【{name}】失败,上级部门不能是自己 i18n_zh 1 supervisor 1.70E+12 0
274 1607 1607 dept.errHasChildUse 操作失败,该部门包含未停用的子部门数量:{num} i18n_zh 1 supervisor 1.70E+12 0
275 1608 1608 dept.errHasUserUse 不允许删除,部门已分配给用户数:{num} i18n_zh 1 supervisor 1.70E+12 0
276 1630 1630 config.sys.user.initPassword 用户管理-账号初始密码 i18n_zh 1 supervisor 1.70E+12 0
277 1631 1631 config.sys.account.captchaEnabled 账号自助-验证码开关 i18n_zh 1 supervisor 1.70E+12 0
278 1632 1632 config.sys.account.registerUser 账号自助-是否开启用户注册功能 i18n_zh 1 supervisor 1.70E+12 0
279 1633 1633 config.sys.user.maxRetryCount 用户管理-密码最大错误次数 i18n_zh 1 supervisor 1.70E+12 0
280 1634 1634 config.sys.user.lockTime 用户管理-密码锁定时间 i18n_zh 1 supervisor 1.70E+12 0
281 1635 1635 config.monitor.sysResource.storeDays 监控-系统资源-数据保留时长 i18n_zh 1 supervisor 1.70E+12 0
282 1636 1636 config.sys.logo.type 系统设置-LOGO类型 i18n_zh 1 supervisor 1.70E+12 0
283 1637 1637 config.sys.logo.filePathIcon 系统设置-LOGO文件icon i18n_zh 1 supervisor 1.70E+12 0
284 1638 1638 config.sys.logo.filePathBrand 系统设置-LOGO文件brand i18n_zh 1 supervisor 1.70E+12 0
285 1639 1639 config.sys.loginBackground 系统设置-登录界面背景 i18n_zh 1 supervisor 1.70E+12 0
286 1640 1640 config.sys.title 系统设置-系统名称 i18n_zh 1 supervisor 1.70E+12 0
287 1641 1641 config.sys.copyright 系统设置-版权声明 i18n_zh 1 supervisor 1.70E+12 0
288 1642 1642 config.sys.user.initPasswordRemark 导入用户初始化密码 123456 i18n_zh 1 supervisor 1.70E+12 0
289 1643 1643 config.sys.account.captchaEnabledRemark 是否开启验证码功能(true开启,false关闭) i18n_zh 1 supervisor 1.70E+12 0
290 1644 1644 config.sys.account.registerUserRemark 是否开启注册用户功能(true开启,false关闭) i18n_zh 1 supervisor 1.70E+12 0
291 1645 1645 config.sys.user.maxRetryCountRemark 密码最大错误次数 i18n_zh 1 supervisor 1.70E+12 0
292 1646 1646 config.sys.user.lockTimeRemark 密码锁定时间,单位分钟(默认10分钟) i18n_zh 1 supervisor 1.70E+12 0
293 1647 1647 config.monitor.sysResource.storeDaysRemark 监控-系统资源-数据保留时长,单位天。根据当前日期,删除超过保留时长的日期数据信息。 i18n_zh 1 supervisor 1.70E+12 0
294 1648 1648 config.sys.logo.typeRemark 全图:brand 小图:icon i18n_zh 1 supervisor 1.70E+12 0
295 1649 1649 config.sys.logo.filePathIconRemark 文件支持网络地址图片和内部上传的文件路径 i18n_zh 1 supervisor 1.70E+12 0
296 1650 1650 config.sys.logo.filePathBrandRemark 文件支持网络地址图片和内部上传的文件路径 i18n_zh 1 supervisor 1.70E+12 0
297 1651 1651 config.sys.loginBackgroundRemark 文件支持网络地址图片和内部上传的文件路径,默认背景用#号 i18n_zh 1 supervisor 1.70E+12 0
298 1652 1652 config.sys.titleRemark 系统名称长度限制11位字符串 i18n_zh 1 supervisor 1.70E+12 0
299 1653 1653 config.sys.copyrightRemark 底脚固定条,左侧放置版权声明 i18n_zh 1 supervisor 1.70E+12 0
300 1654 1654 config..export.id 参数编号 i18n_zh 1 supervisor 1.70E+12 0
301 1655 1655 config..export.name 参数名称 i18n_zh 1 supervisor 1.70E+12 0
302 1656 1656 config..export.key 参数键名 i18n_zh 1 supervisor 1.70E+12 0
303 1657 1657 config..export.value 参数键值 i18n_zh 1 supervisor 1.70E+12 0
304 1658 1658 config..export.type 系统内置 i18n_zh 1 supervisor 1.70E+12 0
305 1659 1659 config..export.remark 参数说明 i18n_zh 1 supervisor 1.70E+12 0
306 1660 1660 config.sys.titleValue AGrandEMS i18n_zh 1 supervisor 1.70E+12 0
307 1661 1661 config.sys.copyrightValue Copyright ©2023 千通科技 i18n_zh 1 supervisor 1.70E+12 0
308 1662 1662 config.noData 没有可访问参数配置数据! i18n_zh 1 supervisor 1.70E+12 0
309 1663 1663 config.errKey 无效 key i18n_zh 1 supervisor 1.70E+12 0
310 1664 1664 config.errValueEq 变更状态与旧值相等! i18n_zh 1 supervisor 1.70E+12 0
311 1665 1665 config.errKeyExists 操作参数配置【{name}】失败,参数键名已存在 i18n_zh 1 supervisor 1.70E+12 0
312 1666 1666 config.errDelete 删除参数配置信息失败! i18n_zh 1 supervisor 1.70E+12 0
313 1667 1667 config.errType 操作含有内置参数,禁止删除! i18n_zh 1 supervisor 1.70E+12 0
314 1700 1700 job.monitor_sys_resource 监控-系统资源 i18n_zh 1 supervisor 1.70E+12 0
315 1701 1701 job.monitor_sys_resource_remark 系统资源CPU/IO/Netword收集 interval单位分钟,平均分钟资源情况 注:请根据cron表达式的时间单位分钟,传入参数interva值 i18n_zh 1 supervisor 1.70E+12 0
316 1702 1702 job.delExpiredNeBackup 删除过期网元备份文件 i18n_zh 1 supervisor 1.70E+12 0
317 1703 1703 job.delExpiredNeBackupRemark 删除过期网元etc备份文件, 传入参数表示保留{duration}天的备份文件, 默认60天 i18n_zh 1 supervisor 1.70E+12 0
318 1704 1704 job.deleteExpiredAlarmRecord 删除过期历史告警记录 i18n_zh 1 supervisor 1.70E+12 0
319 1705 1705 job.deleteExpiredAlarmRecordRemark 删除过期历史告警记录,传入参数表示保留{duration}天的历史告警记录 i18n_zh 1 supervisor 1.70E+12 0
320 1706 1706 job.deleteExpiredKpiRecord 删除过期黄金指标记录 i18n_zh 1 supervisor 1.70E+12 0
321 1707 1707 job.deleteExpiredKpiRecordRemark 黄金指标记录保留{duration}天 i18n_zh 1 supervisor 1.70E+12 0
322 1708 1708 job.backupEtcFromNE 网元配置自动备份任务 i18n_zh 1 supervisor 1.70E+12 0
323 1709 1709 job.backupEtcFromNERemark 自动备份网元etc目录下的配置文件 i18n_zh 1 supervisor 1.70E+12 0
324 1710 1710 job.export.jobID 任务编号 i18n_zh 1 supervisor 1.70E+12 0
325 1711 1711 job.export.jobName 任务名称 i18n_zh 1 supervisor 1.70E+12 0
326 1712 1712 job.export.jobGroupName 任务组名 i18n_zh 1 supervisor 1.70E+12 0
327 1713 1713 job.export.invokeTarget 调用目标 i18n_zh 1 supervisor 1.70E+12 0
328 1714 1714 job.export.targetParams 传入参数 i18n_zh 1 supervisor 1.70E+12 0
329 1715 1715 job.export.cronExpression cron表达式 i18n_zh 1 supervisor 1.70E+12 0
330 1716 1716 job.export.status 状态 i18n_zh 1 supervisor 1.70E+12 0
331 1717 1717 job.export.remark 备注说明 i18n_zh 1 supervisor 1.70E+12 0
332 1718 1718 job.export.jobLogID 任务日志编号 i18n_zh 1 supervisor 1.70E+12 0
333 1719 1719 job.export.jobLogStatus 任务日志状态 i18n_zh 1 supervisor 1.70E+12 0
334 1720 1720 job.export.jobLogTime 任务日志时间 i18n_zh 1 supervisor 1.70E+12 0
335 1721 1721 job.noData 没有可访问调度任务数据! i18n_zh 1 supervisor 1.70E+12 0
336 1722 1722 job.errTargetParams 操作调度任务【{name}】失败,任务传入参数json字符串不正确 i18n_zh 1 supervisor 1.70E+12 0
337 1723 1723 job.errCronExpression 操作调度任务【{name}】失败,Cron表达式不正确 i18n_zh 1 supervisor 1.70E+12 0
338 1724 1724 job.errJobExists 调度任务新增【{name}】失败,同任务组内有相同任务名称 i18n_zh 1 supervisor 1.70E+12 0
339 1725 1725 job.statusEq 变更状态与旧值相等! i18n_zh 1 supervisor 1.70E+12 0
340 1750 1750 role.admin 超级管理员 i18n_zh 1 supervisor 1.70E+12 0
341 1751 1751 role.adminAssign 管理人员 i18n_zh 1 supervisor 1.70E+12 0
342 1752 1752 role.operator 运维人员 i18n_zh 1 supervisor 1.70E+12 0
343 1753 1753 role.monitor 监控人员 i18n_zh 1 supervisor 1.70E+12 0
344 1754 1754 role.vistor 普通用户 i18n_zh 1 supervisor 1.70E+12 0
345 1755 1755 role.adminRemark 超级管理员,无法修改删除 i18n_zh 1 supervisor 1.70E+12 0
346 1756 1756 role.adminAssignRemark 管理人员 可以对设备进行任何操作 i18n_zh 1 supervisor 1.70E+12 0
347 1757 1757 role.operatorRemark 运维人员 可以从设备读取数据,并对设备进行配置,但是不能对设备进行软件升级操作。 i18n_zh 1 supervisor 1.70E+12 0
348 1758 1758 role.monitorRemark 监控人员 只能从设备读取数据,而不能对设备进行任何设置 i18n_zh 1 supervisor 1.70E+12 0
349 1759 1759 role.vistorRemark 普通用户 只可看系统相关信息 i18n_zh 1 supervisor 1.70E+12 0
350 1760 1760 role.export.id 角色编号 i18n_zh 1 supervisor 1.70E+12 0
351 1761 1761 role.export.name 角色名称 i18n_zh 1 supervisor 1.70E+12 0
352 1762 1762 role.export.key 角色键值 i18n_zh 1 supervisor 1.70E+12 0
353 1763 1763 role.export.sort 角色顺序 i18n_zh 1 supervisor 1.70E+12 0
354 1764 1764 role.export.dataScope 角色数据范围 i18n_zh 1 supervisor 1.70E+12 0
355 1765 1765 role.export.status 角色状态 i18n_zh 1 supervisor 1.70E+12 0
356 1766 1766 role.noData 没有可访问角色数据! i18n_zh 1 supervisor 1.70E+12 0
357 1767 1767 role.statusEq 变更状态与旧值相等! i18n_zh 1 supervisor 1.70E+12 0
358 1768 1768 role.errNameExists 操作角色【{name}】失败,角色名称已存在 i18n_zh 1 supervisor 1.70E+12 0
359 1769 1769 role.errKeyExists 操作角色【{name}】失败,角色键值已存在 i18n_zh 1 supervisor 1.70E+12 0
360 1800 1800 post.admin 系统 i18n_zh 1 supervisor 1.70E+12 0
361 1801 1801 post.operator 管理 i18n_zh 1 supervisor 1.70E+12 0
362 1802 1802 post.monitor 运维 i18n_zh 1 supervisor 1.70E+12 0
363 1803 1803 post.visitor 监控 i18n_zh 1 supervisor 1.70E+12 0
364 1804 1804 post.export.id 岗位编号 i18n_zh 1 supervisor 1.70E+12 0
365 1805 1805 post.export.code 岗位编码 i18n_zh 1 supervisor 1.70E+12 0
366 1806 1806 post.export.name 岗位名称 i18n_zh 1 supervisor 1.70E+12 0
367 1807 1807 post.export.sort 岗位排序 i18n_zh 1 supervisor 1.70E+12 0
368 1808 1808 post.export.status 岗位状态 i18n_zh 1 supervisor 1.70E+12 0
369 1809 1809 post.noData 没有可访问岗位数据! i18n_zh 1 supervisor 1.70E+12 0
370 1810 1810 post.errNameExists 操作岗位【{name}】失败,岗位名称已存在已存在 i18n_zh 1 supervisor 1.70E+12 0
371 1811 1811 post.errCodeExists 操作角色【{name}】失败,角色键值已存在 i18n_zh 1 supervisor 1.70E+12 0
372 1830 1830 user.export.id 用户编号 i18n_zh 1 supervisor 1.70E+12 0
373 1831 1831 user.export.name 登录账号 i18n_zh 1 supervisor 1.70E+12 0
374 1832 1832 user.export.nick 用户昵称 i18n_zh 1 supervisor 1.70E+12 0
375 1833 1833 user.export.email 电子邮箱 i18n_zh 1 supervisor 1.70E+12 0
376 1834 1834 user.export.phone 手机号码 i18n_zh 1 supervisor 1.70E+12 0
377 1835 1835 user.export.sex 用户性别 i18n_zh 1 supervisor 1.70E+12 0
378 1836 1836 user.export.status 用户状态 i18n_zh 1 supervisor 1.70E+12 0
379 1837 1837 user.export.deptID 部门编号 i18n_zh 1 supervisor 1.70E+12 0
380 1838 1838 user.export.deptName 部门名称 i18n_zh 1 supervisor 1.70E+12 0
381 1839 1839 user.export.deptLeader 部门负责人 i18n_zh 1 supervisor 1.70E+12 0
382 1840 1840 user.export.loginIP 用户登录IP i18n_zh 1 supervisor 1.70E+12 0
383 1841 1841 user.export.loginDate 用户登录时间 i18n_zh 1 supervisor 1.70E+12 0
384 1842 1842 user.noData 没有可访问用户数据! i18n_zh 1 supervisor 1.70E+12 0
385 1843 1843 user.statusEq 变更状态与旧值相等! i18n_zh 1 supervisor 1.70E+12 0
386 1844 1844 user.errPasswdOld 修改密码失败,旧密码错误 i18n_zh 1 supervisor 1.70E+12 0
387 1845 1845 user.errPasswdEqOld 新密码不能与旧密码相同 i18n_zh 1 supervisor 1.70E+12 0
388 1846 1846 user.errPasswd 登录密码至少包含大小写字母、数字、特殊符号,且不少于6位 i18n_zh 1 supervisor 1.70E+12 0
389 1847 1847 user.errEmailFormat 操作用户【{name}】失败,邮箱格式错误 i18n_zh 1 supervisor 1.70E+12 0
390 1848 1848 user.errEmailExists 操作用户【{name}】失败,邮箱已存在 i18n_zh 1 supervisor 1.70E+12 0
391 1849 1849 user.errPhoneFormat 操作用户【{name}】失败,手机号码格式错误 i18n_zh 1 supervisor 1.70E+12 0
392 1850 1850 user.errPhoneExists 操作用户【{name}】失败,手机号码已存在 i18n_zh 1 supervisor 1.70E+12 0
393 1851 1851 user.errNameExists 操作用户【{name}】失败,登录账号已存在 i18n_zh 1 supervisor 1.70E+12 0
394 1852 1852 user.import.mustItem 表格中必填列表项,{text} i18n_zh 1 supervisor 1.70E+12 0
395 1853 1853 user.import.phoneExist 用户编号:{id} 手机号码 {phone} 已存在 i18n_zh 1 supervisor 1.70E+12 0
396 1854 1854 user.import.phoneFormat 用户编号:{id} 手机号码 {phone} 格式错误 i18n_zh 1 supervisor 1.70E+12 0
397 1855 1855 user.import.emailExist 用户编号:{id} 用户邮箱:{email} 已存在 i18n_zh 1 supervisor 1.70E+12 0
398 1856 1856 user.import.emailFormat 用户编号:{id} 用户邮箱:{email} 格式错误 i18n_zh 1 supervisor 1.70E+12 0
399 1857 1857 user.import.success 用户编号:{id} 登录名称:{name} 导入成功 i18n_zh 1 supervisor 1.70E+12 0
400 1858 1858 user.import.fail 用户编号:{id} 登录名称:{name} 导入失败 i18n_zh 1 supervisor 1.70E+12 0
401 1859 1859 user.import.successUpdate 用户编号:{id} 登录名称:{name} 更新成功 i18n_zh 1 supervisor 1.70E+12 0
402 1860 1860 user.import.failUpdate 用户编号:{id} 登录名称:{name} 更新失败 i18n_zh 1 supervisor 1.70E+12 0
403 1861 1861 user.import.failTip 很抱歉,导入失败!共 {num} 条数据格式不正确,错误如下: i18n_zh 1 supervisor 1.70E+12 0
404 1862 1862 user.import.successTip 恭喜您,数据已全部导入成功!共 {num} 条,数据如下: i18n_zh 1 supervisor 1.70E+12 0
405 1900 1900 app.common.err403 无权访问 {method} {requestURI} i18n_zh 1 supervisor 1.70E+12 0
406 1901 1901 app.common.err401 无效身份授权 i18n_zh 1 supervisor 1.70E+12 0
407 1902 1902 app.common.err400 参数错误 i18n_zh 1 supervisor 1.70E+12 0
408 1903 1903 app.common.exportEmpty 导出数据记录为空 i18n_zh 1 supervisor 1.70E+12 0
409 1904 1904 app.common.errOperateAdmin 不允许操作内置用户 i18n_zh 1 supervisor 1.70E+12 0
410 1905 1905 app.common.errOperateRole 不允许操作内置角色 i18n_zh 1 supervisor 1.70E+12 0
411 1906 1906 app.common.deleteSuccess 删除成功:{num} i18n_zh 1 supervisor 1.70E+12 0
412 1907 1907 app.common.loginSuccess 登录成功 i18n_zh 1 supervisor 1.70E+12 0
413 1908 1908 app.common.logoutSuccess 注销成功 i18n_zh 1 supervisor 1.70E+12 0
414 1909 1909 app.common.errUnlock 该用户未被锁定 i18n_zh 1 supervisor 1.70E+12 0
415 1910 1910 app.common.noLoginUser 登录用户信息无效 i18n_zh 1 supervisor 1.70E+12 0
416 1911 1911 app.common.rateLimitTip 访问过于频繁,请稍候再试 i18n_zh 1 supervisor 1.70E+12 0
417 1912 1912 log.operate.export.id 操作编号 i18n_zh 1 supervisor 1.70E+12 0
418 1913 1913 log.operate.export.title 模块名称 i18n_zh 1 supervisor 1.70E+12 0
419 1914 1914 log.operate.export.businessType 业务类型 i18n_zh 1 supervisor 1.70E+12 0
420 1915 1915 log.operate.export.method 操作方法 i18n_zh 1 supervisor 1.70E+12 0
421 1916 1916 log.operate.export.requestMethod 请求方式 i18n_zh 1 supervisor 1.70E+12 0
422 1917 1917 log.operate.export.operatorType 操作类型 i18n_zh 1 supervisor 1.70E+12 0
423 1918 1918 log.operate.export.operName 操作人员 i18n_zh 1 supervisor 1.70E+12 0
424 1919 1919 log.operate.export.deptName 操作人员部门名称 i18n_zh 1 supervisor 1.70E+12 0
425 1920 1920 log.operate.export.url 请求链接地址 i18n_zh 1 supervisor 1.70E+12 0
426 1921 1921 log.operate.export.ip 请求主机 i18n_zh 1 supervisor 1.70E+12 0
427 1922 1922 log.operate.export.location 请求地址 i18n_zh 1 supervisor 1.70E+12 0
428 1923 1923 log.operate.export.param 请求参数 i18n_zh 1 supervisor 1.70E+12 0
429 1924 1924 log.operate.export.msg 操作信息 i18n_zh 1 supervisor 1.70E+12 0
430 1925 1925 log.operate.export.status 操作状态 i18n_zh 1 supervisor 1.70E+12 0
431 1926 1926 log.operate.export.costTime 消耗时间(毫秒) i18n_zh 1 supervisor 1.70E+12 0
432 1927 1927 log.operate.export.operTime 操作时间 i18n_zh 1 supervisor 1.70E+12 0
433 1928 1928 log.login.export.id 记录编号 i18n_zh 1 supervisor 1.70E+12 0
434 1929 1929 log.login.export.userName 登录账号 i18n_zh 1 supervisor 1.70E+12 0
435 1930 1930 log.login.export.status 登录状态 i18n_zh 1 supervisor 1.70E+12 0
436 1931 1931 log.login.export.ip 登录地址 i18n_zh 1 supervisor 1.70E+12 0
437 1932 1932 log.login.export.location 登录地点 i18n_zh 1 supervisor 1.70E+12 0
438 1933 1933 log.login.export.browser 浏览器 i18n_zh 1 supervisor 1.70E+12 0
439 1934 1934 log.login.export.os 操作系统 i18n_zh 1 supervisor 1.70E+12 0
440 1935 1935 log.login.export.msg 登录信息 i18n_zh 1 supervisor 1.70E+12 0
441 1936 1936 log.login.export.time 登录时间 i18n_zh 1 supervisor 1.70E+12 0
442 1937 1937 trace.tcpdump.noData 找不到 {type} {id} 对应网元信息 i18n_zh 1 supervisor 1.70E+12 0
443 1938 1938 register.errUsername 账号不能以数字开头,可包含大写小写字母,数字,且不少于5位 i18n_zh 1 supervisor 1.70E+12 0
444 1939 1939 register.errPasswd 登录密码至少包含大小写字母、数字、特殊符号,且不少于6位 i18n_zh 1 supervisor 1.70E+12 0
445 1940 1940 register.errPasswdNotEq 用户确认输入密码不一致 i18n_zh 1 supervisor 1.70E+12 0
446 1941 1941 register.success 注册成功 i18n_zh 1 supervisor 1.70E+12 0
447 1942 1942 register.successMsg {name} 注册成功 {id} i18n_zh 1 supervisor 1.70E+12 0
448 1943 1943 log.operate.title.sysJobLog 调度任务日志 i18n_zh 1 supervisor 1.70E+12 0
449 1944 1944 log.operate.title.sysJob 调度任务 i18n_zh 1 supervisor 1.70E+12 0
450 1945 1945 log.operate.title.tcpdump 信令抓包 i18n_zh 1 supervisor 1.70E+12 0
451 1946 1946 log.operate.title.sysConfig 参数配置 i18n_zh 1 supervisor 1.70E+12 0
452 1947 1947 log.operate.title.sysDept 部门 i18n_zh 1 supervisor 1.70E+12 0
453 1948 1948 log.operate.title.sysDictData 字典数据 i18n_zh 1 supervisor 1.70E+12 0
454 1949 1949 log.operate.title.sysDictType 字典类型 i18n_zh 1 supervisor 1.70E+12 0
455 1950 1950 log.operate.title.sysMenu 菜单 i18n_zh 1 supervisor 1.70E+12 0
456 1951 1951 log.operate.title.sysPost 岗位 i18n_zh 1 supervisor 1.70E+12 0
457 1952 1952 log.operate.title.sysProfile 个人信息 i18n_zh 1 supervisor 1.70E+12 0
458 1953 1953 log.operate.title.sysProfileAvatar 个人头像 i18n_zh 1 supervisor 1.70E+12 0
459 1954 1954 log.operate.title.sysRole 角色 i18n_zh 1 supervisor 1.70E+12 0
460 1955 1955 log.operate.title.sysUser 用户 i18n_zh 1 supervisor 1.70E+12 0
461 1956 1956 log.operate.title.sysLogOper 操作日志记录 i18n_zh 1 supervisor 1.70E+12 0
462 1957 1957 log.operate.title.sysLogLogin 登录日志记录 i18n_zh 1 supervisor 1.70E+12 0
463 1958 1958 login.errNameOrPasswd 用户不存在或密码错误 i18n_zh 1 supervisor 1.70E+12 0
464 1959 1959 login.errDelFlag 对不起,您的账号已被删除 i18n_zh 1 supervisor 1.70E+12 0
465 1960 1960 login.errStatus 对不起,您的帐户已被禁用 i18n_zh 1 supervisor 1.70E+12 0
466 1961 1961 login.errRetryPasswd 密码输入错误多次,帐户已被锁定 i18n_zh 1 supervisor 1.70E+12 0
467 1962 1962 captcha.err 验证码错误 i18n_zh 1 supervisor 1.70E+12 0
468 1963 1963 captcha.errValid 验证码已失效 i18n_zh 1 supervisor 1.70E+12 0
469 1964 1964 app.common.noUaOsBrowser 未知 未知 i18n_zh 1 supervisor 1.70E+12 0
470 1965 1965 app.common.noIPregion 内网 i18n_zh 1 supervisor 1.70E+12 0
471 1966 1966 app.common.unknown 未知 i18n_zh 1 supervisor 1.70E+12 0
472 1967 1967 app.common.noNEInfo 未找到匹配网元信息 i18n_zh 1 supervisor 1.70E+12 0
473 1968 1968 ne.udm.errImportUserAuthFileFormat 请上传.csv或.txt的格式文件。英文逗号分割txt格式:imsi, ki, algo, amf, opc i18n_zh 1 supervisor 1.70E+12 0
474 1969 1969 ne.udm.errExportType 导出文件类型支持CSV和txt i18n_zh 1 supervisor 1.70E+12 0
475 1970 1970 ne.udm.errImportUserSubFileFormat 请上传.csv或.txt的格式文件。英文逗号分割txt格式:imsi, msisdn, ambr, nssai, arfb, sar, rat, cn, smf_sel, sm_dat, eps_dat i18n_zh 1 supervisor 1.70E+12 0
476 1971 1971 log.operate.title.udmAuth UDM鉴权用户 i18n_zh 1 supervisor 1.70E+12 0
477 1972 1972 log.operate.title.udmSub UDM签约用户 i18n_zh 1 supervisor 1.70E+12 0
478 1973 1973 dictType.active_alarm_type 活动告警类型 i18n_zh 1 supervisor 1.70E+12 0
479 1974 1974 dictType.active_alarm_type_remark 活动告警类型列表 i18n_zh 1 supervisor 1.70E+12 0
480 1975 1975 dictData.active_alarm_type.communication 通信告警 i18n_zh 1 supervisor 1.70E+12 0
481 1976 1976 dictData.active_alarm_type.equipment 设备告警 i18n_zh 1 supervisor 1.70E+12 0
482 1977 1977 dictData.active_alarm_type.processing 处理错误 i18n_zh 1 supervisor 1.70E+12 0
483 1978 1978 dictData.active_alarm_type.environmental 环境告警 i18n_zh 1 supervisor 1.70E+12 0
484 1979 1979 dictData.active_alarm_type.qualityOfService 服务质量 i18n_zh 1 supervisor 1.70E+12 0
485 1980 1980 dictType.active_clear_type 告警清除类型 i18n_zh 1 supervisor 1.70E+12 0
486 1981 1981 dictType.active_clear_type_remark 告警清除类型列表 i18n_zh 1 supervisor 1.70E+12 0
487 1982 1982 dictData.active_clear_type.notCleared 告警未清除 i18n_zh 1 supervisor 1.70E+12 0
488 1983 1983 dictData.active_clear_type.hand 手动清除 i18n_zh 1 supervisor 1.70E+12 0
489 1984 1984 dictData.active_clear_type.auto 自动清除 i18n_zh 1 supervisor 1.70E+12 0
490 1985 1985 dictType.active_ack_state 告警确认类型 i18n_zh 1 supervisor 1.70E+12 0
491 1986 1986 dictType.active_ack_state_remark 告警确认类型列表 i18n_zh 1 supervisor 1.70E+12 0
492 1987 1987 dictData.active_ack_state.unconfirmed 未确认 i18n_zh 1 supervisor 1.70E+12 0
493 1988 1988 dictData.active_ack_state.confirmed 已确认 i18n_zh 1 supervisor 1.70E+12 0
494 1989 1989 dictType.active_alarm_severity 严重程度 i18n_zh 1 supervisor 1.70E+12 0
495 1990 1990 dictType.active_alarm_severity_remark 严重程度列表 i18n_zh 1 supervisor 1.70E+12 0
496 1991 1991 dictData.active_alarm_severity.critical 严重告警 i18n_zh 1 supervisor 1.70E+12 0
497 1992 1992 dictData.active_alarm_severity.major 主要告警 i18n_zh 1 supervisor 1.70E+12 0
498 1993 1993 dictData.active_alarm_severity.minor 次要告警 i18n_zh 1 supervisor 1.70E+12 0
499 1994 1994 dictData.active_alarm_severity.warning 警告告警 i18n_zh 1 supervisor 1.70E+12 0
500 1995 1995 dictData.active_alarm_severity.event 事件告警 i18n_zh 1 supervisor 1.70E+12 0
501 1996 1996 config.sys.officialUrl 系统设置-官网链接 i18n_zh 1 supervisor 1.70E+12 0
502 1997 1997 config.sys.helpDoc 系统设置-系统使用文档 i18n_zh 1 supervisor 1.70E+12 0
503 1998 1998 config.sys.officialUrlRemark 默认无地址用#号 i18n_zh 1 supervisor 1.70E+12 0
504 1999 1999 config.sys.helpDocRemark 静态文件目录地址,使用{language}区分语言文件 i18n_zh 1 supervisor 1.70E+12 0
505 2000 2000 log.operate.title.neAction 网元处理 i18n_zh 1 supervisor 1.70E+12 0
506 2001 2001 log.operate.title.helpDoc 系统使用文档 i18n_zh 1 supervisor 1.70E+12 0
507 2002 2002 menu.ueUser.n3iwf N3IWF在线用户 i18n_zh 1 supervisor 1.70E+12 0
508 2003 2003 menu.ueUser.pcf 用户策略控制信息 i18n_zh 1 supervisor 1.70E+12 0
509 2004 2004 menu.system.user.editRole 修改用户角色 i18n_zh 1 supervisor 1.70E+12 0
510 2005 2005 config.sys.i18nOpen 国际化切换 i18n_zh 1 supervisor 1.70E+12 0
511 2006 2006 config.sys.i18nDefault 国际化默认语言 i18n_zh 1 supervisor 1.70E+12 0
512 2007 2007 user.export.role 用户角色 i18n_zh 1 supervisor 1.70E+12 0
513 2008 2008 menu.system.setting.i18n 国际化切换 i18n_zh 1 supervisor 1.70E+12 0
514 2009 2009 menu.system.setting.i18nRemark 国际化多语言的切换选择 i18n_zh 1 supervisor 1.70E+12 0
515 2010 2010 dictType.index_status 首页状态 i18n_zh 1 supervisor 1.70E+12 0
516 2011 2011 dictType.index_status_remark 首页的网元状态颜色 i18n_zh 1 supervisor 1.70E+12 0
517 2012 2012 dictType.index_status.normal 正常 i18n_zh 1 supervisor 1.70E+12 0
518 2013 2013 dictType.index_status.abnormal 异常 i18n_zh 1 supervisor 1.70E+12 0
519 2014 2014 menu.log.neFile 网元日志文件 i18n_zh 1 supervisor 1.70E+12 0
520 2015 2015 job.deleteExpiredNeStateRecord 删除过期网元状态记录 i18n_zh 1 supervisor 1.70E+12 0
521 2016 2016 job.deleteExpiredNeStateRecordRemark 定期删除过期的网元状态记录, 默认保留{duration}天 i18n_zh 1 supervisor 1.70E+12 0
522 2017 2017 job.getStateFromNE 获取网元状态信息 i18n_zh 1 supervisor 1.70E+12 0
523 2018 2018 job.getStateFromNERemark 获取所有网元状态信息 i18n_zh 1 supervisor 1.70E+12 0
524 2019 2019 job.genNeStateAlarm 网元健康状态巡检 i18n_zh 1 supervisor 1.70E+12 0
525 2020 2020 job.genNeStateAlarmRemark 网元健康状态巡检,异常时产生告警 i18n_zh 1 supervisor 1.70E+12 0
526 2021 2021 menu.neUser.nssf NSSF在线订阅数 i18n_zh 1 supervisor 1.70E+12 0
527 2022 2022 menu.neUser.nssfAmf NSSF可用的注册AMF i18n_zh 1 supervisor 1.70E+12 0
528 2023 2023 menu.monitor.topology 拓扑信息 i18n_zh 1 supervisor 1.70E+12 0
529 2024 2024 menu.monitor.topologyBuild 拓扑图组编辑 i18n_zh 1 supervisor 1.70E+12 0
530 2025 2025 log.operate.title.chartGraph 拓扑图组 i18n_zh 1 supervisor 1.70E+12 0
531 2026 2026 menu.monitor.topologyArchitecture 网元拓扑组网 i18n_zh 1 supervisor 1.70E+12 0
532 2027 2027 menu.alarm 告警 i18n_zh 1 supervisor 1.70E+12 0
533 2028 2028 menu.topology 拓扑 i18n_zh 1 supervisor 1.70E+12 0
534 2029 2029 config.sys.lockTime 系统设置-锁屏超时时长 i18n_zh 1 supervisor 1.70E+12 0
535 2030 2030 config.sys.lockTimeRemark 无操作时锁屏超时时长,单位(秒) i18n_zh 1 supervisor 1.70E+12 0
536 2031 2031 sys.account.captchaType 账号自助-验证码类型 i18n_zh 1 supervisor 1.70E+12 0
537 2032 2032 sys.account.captchaTypeRemark 使用验证码类型(math数值计算,char字符验证) i18n_zh 1 supervisor 1.70E+12 0
538 2033 2033 menu.dashboard 仪表盘 i18n_zh 1 supervisor 1.70555E+12 0
539 2034 2034 menu.dashboard.overview 总览 i18n_zh 1 supervisor 1.70555E+12 0
540 2035 2035 menu.dashboard.cdr CDR i18n_zh 1 supervisor 1.70555E+12 0

View File

@@ -0,0 +1,22 @@
dict_id,dict_name,dict_type,status,create_by,create_time,update_by,update_time,remark
1,dictType.sys_user_sex,sys_user_sex,1,supervisor,1.69935E+12,,0,dictType.sys_user_sex_remark
2,dictType.sys_show_hide,sys_show_hide,1,supervisor,1.69935E+12,,0,dictType.sys_show_hide_remark
3,dictType.sys_normal_disable,sys_normal_disable,1,supervisor,1.69935E+12,,0,dictType.sys_normal_disable_remark
4,dictType.sys_job_status,sys_job_status,1,supervisor,1.69935E+12,,0,dictType.sys_job_status_remark
5,dictType.sys_job_group,sys_job_group,1,supervisor,1.69935E+12,,0,dictType.sys_job_group_remark
6,dictType.sys_yes_no,sys_yes_no,1,supervisor,1.69935E+12,,0,dictType.sys_yes_no_remark
9,dictType.sys_oper_type,sys_oper_type,1,supervisor,1.69935E+12,,0,dictType.sys_oper_type_remark
10,dictType.sys_common_status,sys_common_status,1,supervisor,1.69935E+12,,0,dictType.sys_common_status_remark
100,dictType.trace_type,trace_type,1,supervisor,1.69935E+12,,0,dictType.trace_type_remark
101,dictType.operation_log_type,operation_log_type,1,supervisor,1.69935E+12,,0,dictType.operation_log_type_remark
102,dictType.alarm_status,alarm_status,1,supervisor,1.69935E+12,,0,dictType.alarm_status_remark
103,dictType.security_log_type,security_log_type,1,supervisor,1.69935E+12,,0,dictType.security_log_type_remark
104,dictType.ne_version_status,ne_version_status,1,supervisor,1.69935E+12,,0,dictType.ne_version_status_remark
105,dictType.i18n_en,i18n_en,1,supervisor,1.69935E+12,,0,dictType.i18n_en_remark
106,dictType.i18n_zh,i18n_zh,1,supervisor,1.69935E+12,,0,dictType.i18n_zh_remark
107,dictType.sys_role_datascope,sys_role_datascope,1,supervisor,1.69935E+12,,0,dictType.sys_role_datascope_remark
108,dictType.active_alarm_type,active_alarm_type,1,supervisor,1.69935E+12,,0,dictType.active_alarm_type_remark
109,dictType.active_clear_type,active_clear_type,1,supervisor,1.69935E+12,,0,dictType.active_clear_type_remark
110,dictType.active_ack_state,active_ack_state,1,supervisor,1.69935E+12,,0,dictType.active_ack_state_remark
111,dictType.active_alarm_severity,active_alarm_severity,1,supervisor,1.69935E+12,,0,dictType.active_alarm_severity_remark
112,dictType.index_status,index_status,1,supervisor,1.70202E+12,,0,dictType.index_status_remark
1 dict_id dict_name dict_type status create_by create_time update_by update_time remark
2 1 dictType.sys_user_sex sys_user_sex 1 supervisor 1.69935E+12 0 dictType.sys_user_sex_remark
3 2 dictType.sys_show_hide sys_show_hide 1 supervisor 1.69935E+12 0 dictType.sys_show_hide_remark
4 3 dictType.sys_normal_disable sys_normal_disable 1 supervisor 1.69935E+12 0 dictType.sys_normal_disable_remark
5 4 dictType.sys_job_status sys_job_status 1 supervisor 1.69935E+12 0 dictType.sys_job_status_remark
6 5 dictType.sys_job_group sys_job_group 1 supervisor 1.69935E+12 0 dictType.sys_job_group_remark
7 6 dictType.sys_yes_no sys_yes_no 1 supervisor 1.69935E+12 0 dictType.sys_yes_no_remark
8 9 dictType.sys_oper_type sys_oper_type 1 supervisor 1.69935E+12 0 dictType.sys_oper_type_remark
9 10 dictType.sys_common_status sys_common_status 1 supervisor 1.69935E+12 0 dictType.sys_common_status_remark
10 100 dictType.trace_type trace_type 1 supervisor 1.69935E+12 0 dictType.trace_type_remark
11 101 dictType.operation_log_type operation_log_type 1 supervisor 1.69935E+12 0 dictType.operation_log_type_remark
12 102 dictType.alarm_status alarm_status 1 supervisor 1.69935E+12 0 dictType.alarm_status_remark
13 103 dictType.security_log_type security_log_type 1 supervisor 1.69935E+12 0 dictType.security_log_type_remark
14 104 dictType.ne_version_status ne_version_status 1 supervisor 1.69935E+12 0 dictType.ne_version_status_remark
15 105 dictType.i18n_en i18n_en 1 supervisor 1.69935E+12 0 dictType.i18n_en_remark
16 106 dictType.i18n_zh i18n_zh 1 supervisor 1.69935E+12 0 dictType.i18n_zh_remark
17 107 dictType.sys_role_datascope sys_role_datascope 1 supervisor 1.69935E+12 0 dictType.sys_role_datascope_remark
18 108 dictType.active_alarm_type active_alarm_type 1 supervisor 1.69935E+12 0 dictType.active_alarm_type_remark
19 109 dictType.active_clear_type active_clear_type 1 supervisor 1.69935E+12 0 dictType.active_clear_type_remark
20 110 dictType.active_ack_state active_ack_state 1 supervisor 1.69935E+12 0 dictType.active_ack_state_remark
21 111 dictType.active_alarm_severity active_alarm_severity 1 supervisor 1.69935E+12 0 dictType.active_alarm_severity_remark
22 112 dictType.index_status index_status 1 supervisor 1.70202E+12 0 dictType.index_status_remark

View File

@@ -0,0 +1,6 @@
job_id,job_name,job_group,invoke_target,target_params,cron_expression,misfire_policy,concurrent,status,save_log,create_by,create_time,update_by,update_time,remark
1,job.monitor_sys_resource,SYSTEM,monitor_sys_resource,{"interval":5},0 0/5 * * * ?,3,0,1,0,supervisor,1.69848E+12,,0,job.monitor_sys_resource_remark
4,job.delExpiredNeBackup,SYSTEM,delExpiredNeBackup,{"duration":90},0 20 0 * * ?,3,0,1,1,supervisor,1.69848E+12,,0,job.delExpiredNeBackupRemark
5,job.deleteExpiredAlarmRecord,SYSTEM,deleteExpiredRecord,"{""duration"":34,""tableName"":""alarm"",""colName"":""event_time"",""extras"":""alarm_status='0'""}",0 10 0 * * ?,3,0,1,1,supervisor,1.69848E+12,,0,job.deleteExpiredAlarmRecordRemark
6,job.deleteExpiredKpiRecord,SYSTEM,deleteExpiredRecord,"{""duration"":39,""tableName"":""gold_kpi"",""colName"":""date""}",0 15 0 * * ?,3,0,1,1,supervisor,1.69848E+12,,0,job.deleteExpiredKpiRecordRemark
7,job.backupEtcFromNE,SYSTEM,backupEtcFromNE,,0 30 0 * * ?,3,0,1,1,supervisor,1.69848E+12,,0,job.backupEtcFromNERemark
Can't render this file because it contains an unexpected character in line 2 and column 57.

View File

@@ -0,0 +1,209 @@
menu_id,menu_name,parent_id,menu_sort,path,component,is_frame,is_cache,menu_type,visible,status,perms,icon,create_by,create_time,update_by,update_time,remark
1,menu.system,0,16,system,,1,1,D,1,1,,icon-xiangmu,supervisor,1.70E+12,,0,menu.systemRemark
2,menu.monitor,0,2,monitor,,1,1,D,0,0,,icon-wenjian,supervisor,1.70E+12,,0,menu.monitorRemark
3,menu.tools,0,15,tool,,1,1,D,1,1,,icon-wenjian,supervisor,1.70E+12,,0,menu.toolsRemark
4,menu.config,0,3,configManage,,1,0,D,1,1,,icon-huizhiguize,supervisor,1.70E+12,,0,menu.configRemark
5,menu.ueUser,0,7,neUser,,1,0,D,1,1,,icon-wocanyu,supervisor,1.70E+12,,0,menu.ueUserRemark
6,故障管理,0,50,page,,1,0,D,0,1,page,fa fa-home,admin,1.69E+12,admin,1.69E+12,故障管理
7,配置管理,0,550,page,,1,0,D,0,1,page,fa fa-home,admin,1.69E+12,admin,0,配置管理
8,性能管理,0,551,page,,1,0,D,0,1,page,fa fa-home,admin,1.69E+12,admin,0,性能管理
9,操作维护,0,552,page,,1,0,D,0,1,page,fa fa-home,admin,1.69E+12,admin,0,操作维护
10,跟踪管理,0,553,page,,1,0,D,0,1,page,fa fa-home,admin,1.69E+12,admin,1.69E+12,跟踪管理
11,日志管理,0,554,page,,1,0,D,0,1,page,fa fa-home,admin,1.69E+12,admin,0,日志管理
12,安全管理,0,555,page,,1,0,D,0,1,page,fa fa-home,admin,1.69E+12,admin,0,安全管理
13,北向管理,0,556,page,,1,0,D,0,0,page,fa fa-home,admin,1.69E+12,admin,1.69E+12,北向管理
14,系统管理,0,557,page,,1,0,D,0,1,page,fa fa-home,admin,1.69E+12,admin,0,系统管理
15,拓扑管理,0,558,page,,1,0,D,0,0,page,fa fa-home,admin,1.69E+12,admin,0,拓扑管理
100,menu.security.user,2113,1,user,system/user/index,1,1,M,1,1,system:user:list,icon-wocanyu,supervisor,1.70E+12,,0,menu.security.userRemark
101,menu.security.role,2113,3,role,system/role/index,1,1,M,1,1,system:role:list,icon-anzhuo,supervisor,1.70E+12,,0,menu.security.roleRemark
102,menu.security.roleUser,2113,3,role/inline/auth-user/:roleId,system/role/auth-user,1,1,M,0,1,system:role:auth,#,supervisor,1.70E+12,,0,menu.security.roleUserRemark
103,menu.system.menu,1,4,menu,system/menu/index,1,1,M,1,1,system:menu:list,icon-wofaqi,supervisor,1.70E+12,,0,menu.system.menuRemark
104,menu.security.dept,2113,5,dept,system/dept/index,1,1,M,1,1,system:dept:list,icon-yuzhanghao1,supervisor,1.70E+12,,0,menu.security.deptRemark
105,menu.security.post,2113,6,post,system/post/index,1,1,M,1,1,system:post:list,icon-gonggaodayi,supervisor,1.70E+12,,0,menu.security.postRemark
106,menu.system.dictType,1,7,dict,system/dict/index,1,1,M,1,1,system:dict:list,icon-tubiaoku,supervisor,1.70E+12,,0,menu.system.dictTypeRemark
107,menu.system.dictData,1,8,dict/inline/data/:dictId,system/dict/data,1,1,M,0,1,system:dict:data,#,supervisor,1.70E+12,,0,menu.system.dictDataRemark
108,menu.system.paramSet,1,9,config,system/config/index,1,1,M,1,1,system:config:list,icon-gongnengjieshao,supervisor,1.70E+12,,0,menu.system.paramSetRemark
111,menu.system.systemLog,1,11,log,,1,1,D,0,0,,#,supervisor,1.70E+12,,0,menu.system.systemLogRemark
112,menu.system.systemInfo,1,3,system-info,monitor/system/info,1,1,M,1,1,monitor:system:info,icon-fuzhidaima,supervisor,1.70E+12,,0,menu.system.systemInfoRemark
113,menu.system.cacheInfo,1,2,cache-info,monitor/cache/info,1,1,M,0,1,monitor:cache:info,icon-gongnengjieshao,supervisor,1.70E+12,,0,menu.system.cacheInfoRemark
114,menu.system.cache,1,3,cache,monitor/cache/index,1,1,M,0,1,monitor:cache:list,icon-tubiaoku,supervisor,1.70E+12,,0,menu.system.cacheRemark
115,menu.security.onlineUser,2113,2,online,monitor/online/index,1,1,M,1,1,monitor:online:list,icon-xiangmuchengyuan,supervisor,1.70E+12,,0,menu.security.onlineUserRemark
116,menu.system.job,1,1,job,monitor/job/index,1,1,M,1,1,monitor:job:list,icon-lishi,supervisor,1.70E+12,,0,menu.system.jobRemark
117,menu.system.jobLog,1,2,/system/job/inline/log/:jobId,monitor/job/log,1,1,M,0,1,monitor:job:log,#,supervisor,1.70E+12,,0,menu.system.jobLogRemark
118,menu.tools.help,3,1,help,tool/help/index,1,1,M,1,1,monitor:help:list,#,supervisor,1.70E+12,,0,menu.tools.helpRemark
500,menu.log.operat,2089,1,operate,system/log/operate/index,1,1,M,1,1,system:log:operate:list,icon-fuzhidaima,supervisor,1.70E+12,,0,menu.log.operatRemark
501,menu.log.login,2089,2,login,system/log/login/index,1,1,M,1,1,system:log:login:list,icon-fuzhidaima,supervisor,1.70E+12,,0,menu.log.loginRemark
1000,menu.common.query,100,1,,,1,1,B,1,1,system:user:query,#,supervisor,1.70E+12,,0,
1001,menu.common.add,100,2,,,1,1,B,1,1,system:user:add,#,supervisor,1.70E+12,,0,
1002,menu.common.edit,100,3,,,1,1,B,1,1,system:user:edit,#,supervisor,1.70E+12,,0,
1003,menu.common.delete,100,4,,,1,1,B,1,1,system:user:remove,#,supervisor,1.70E+12,,0,
1004,menu.common.export,100,5,,,1,1,B,1,1,system:user:export,#,supervisor,1.70E+12,,0,
1005,menu.common.import,100,6,,,1,1,B,1,1,system:user:import,#,supervisor,1.70E+12,,0,
1006,menu.common.reset,100,7,,,1,1,B,1,1,system:user:resetPwd,#,supervisor,1.70E+12,,0,
1007,menu.common.query,101,1,,,1,1,B,1,1,system:role:query,#,supervisor,1.70E+12,,0,
1008,menu.common.add,101,2,,,1,1,B,1,1,system:role:add,#,supervisor,1.70E+12,,0,
1009,menu.common.edit,101,3,,,1,1,B,1,1,system:role:edit,#,supervisor,1.70E+12,,0,
1010,menu.common.delete,101,4,,,1,1,B,1,1,system:role:remove,#,supervisor,1.70E+12,,0,
1011,menu.common.export,101,5,,,1,1,B,1,1,system:role:export,#,supervisor,1.70E+12,,0,
1012,menu.common.query,103,1,,,1,1,B,1,1,system:menu:query,#,supervisor,1.70E+12,,0,
1013,menu.common.add,103,2,,,1,1,B,1,1,system:menu:add,#,supervisor,1.70E+12,,0,
1014,menu.common.edit,103,3,,,1,1,B,1,1,system:menu:edit,#,supervisor,1.70E+12,,0,
1015,menu.common.delete,103,4,,,1,1,B,1,1,system:menu:remove,#,supervisor,1.70E+12,,0,
1016,menu.common.query,104,1,,,1,1,B,1,1,system:dept:query,#,supervisor,1.70E+12,,0,
1017,menu.common.add,104,2,,,1,1,B,1,1,system:dept:add,#,supervisor,1.70E+12,,0,
1018,menu.common.edit,104,3,,,1,1,B,1,1,system:dept:edit,#,supervisor,1.70E+12,,0,
1019,menu.common.delete,104,4,,,1,1,B,1,1,system:dept:remove,#,supervisor,1.70E+12,,0,
1020,menu.common.query,105,1,,,1,1,B,1,1,system:post:query,#,supervisor,1.70E+12,,0,
1021,menu.common.add,105,2,,,1,1,B,1,1,system:post:add,#,supervisor,1.70E+12,,0,
1022,menu.common.edit,105,3,,,1,1,B,1,1,system:post:edit,#,supervisor,1.70E+12,,0,
1023,menu.common.delete,105,4,,,1,1,B,1,1,system:post:remove,#,supervisor,1.70E+12,,0,
1024,menu.common.export,105,5,,,1,1,B,1,1,system:post:export,#,supervisor,1.70E+12,,0,
1025,menu.common.query,106,1,#,,1,1,B,1,1,system:dict:query,#,supervisor,1.70E+12,,0,
1026,menu.common.add,106,2,#,,1,1,B,1,1,system:dict:add,#,supervisor,1.70E+12,,0,
1027,menu.common.edit,106,3,#,,1,1,B,1,1,system:dict:edit,#,supervisor,1.70E+12,,0,
1028,menu.common.delete,106,4,#,,1,1,B,1,1,system:dict:remove,#,supervisor,1.70E+12,,0,
1029,menu.common.export,106,5,#,,1,1,B,1,1,system:dict:export,#,supervisor,1.70E+12,,0,
1030,menu.common.query,108,1,#,,1,1,B,1,1,system:config:query,#,supervisor,1.70E+12,,0,
1031,menu.common.add,108,2,#,,1,1,B,1,1,system:config:add,#,supervisor,1.70E+12,,0,
1032,menu.common.edit,108,3,#,,1,1,B,1,1,system:config:edit,#,supervisor,1.70E+12,,0,
1033,menu.common.delete,108,4,#,,1,1,B,1,1,system:config:remove,#,supervisor,1.70E+12,,0,
1034,menu.common.export,108,5,#,,1,1,B,1,1,system:config:export,#,supervisor,1.70E+12,,0,
1039,menu.common.query,500,1,#,,1,1,B,1,1,system:log:operate:query,#,supervisor,1.70E+12,,0,
1040,menu.common.delete,500,2,#,,1,1,B,1,1,system:log:operate:remove,#,supervisor,1.70E+12,,0,
1041,menu.common.export,500,3,#,,1,1,B,1,1,system:log:operate:export,#,supervisor,1.70E+12,,0,
1042,menu.common.query,501,1,#,,1,1,B,1,1,system:log:login:query,#,supervisor,1.70E+12,,0,
1043,menu.common.delete,501,2,#,,1,1,B,1,1,system:log:login:remove,#,supervisor,1.70E+12,,0,
1044,menu.common.export,501,3,#,,1,1,B,1,1,system:log:login:export,#,supervisor,1.70E+12,,0,
1045,menu.common.unlock,501,4,#,,1,1,B,1,1,system:log:login:unlock,#,supervisor,1.70E+12,,0,
1046,menu.common.query,114,1,#,,1,1,B,1,1,monitor:cache:query,#,supervisor,1.70E+12,,0,
1047,menu.common.delete,114,2,#,,1,1,B,1,1,monitor:cache:remove,#,supervisor,1.70E+12,,0,
1048,menu.common.query,115,1,#,,1,1,B,1,1,monitor:online:query,#,supervisor,1.70E+12,,0,
1049,menu.forcedQuit.batch ,115,2,#,,1,1,B,1,1,monitor:online:batchLogout,#,supervisor,1.70E+12,,0,
1050,menu.forcedQuit.single,115,3,#,,1,1,B,1,1,monitor:online:forceLogout,#,supervisor,1.70E+12,,0,
1051,menu.common.query,116,1,#,,1,1,B,1,1,monitor:job:query,#,supervisor,1.70E+12,,0,
1052,menu.common.add,116,2,#,,1,1,B,1,1,monitor:job:add,#,supervisor,1.70E+12,,0,
1053,menu.common.edit,116,3,#,,1,1,B,1,1,monitor:job:edit,#,supervisor,1.70E+12,,0,
1054,menu.common.delete,116,4,#,,1,1,B,1,1,monitor:job:remove,#,supervisor,1.70E+12,,0,
1055,menu.common.edit,116,5,#,,1,1,B,1,1,monitor:job:changeStatus,#,supervisor,1.70E+12,,0,
1056,menu.common.export,116,6,#,,1,1,B,1,1,monitor:job:export,#,supervisor,1.70E+12,,0,
2009,menu.ueUser.authUDM,5,1,auth,neUser/auth/index,1,1,M,1,1,neUser:auth:index,icon-xiangmuchengyuan,supervisor,1.70E+12,,0,menu.ueUser.authUDMRemark
2010,menu.ueUser.subUDM,5,2,sub,neUser/sub/index,1,1,M,1,1,neUser:sub:index,icon-xiangmuchengyuan,supervisor,1.70E+12,,0,menu.ueUser.subUDMRemark
2011,活动告警,6,1,,page/alarm/alarmListDown.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,1.69E+12,活动告警
2012,历史告警,6,2,,page/alarm/AlarmListHistory.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,历史告警
2013,故障通用设置,6,3,,page/alarm/alarmInfoConfig.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,故障通用设置
2014,定时同步设置,6,4,,page/alarm/synchronous.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,1.69E+12,定时同步设置
2015,健康状态检查,6,5,,page/alarm/healthCheck.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,1.69E+12,健康状态检查
2016,告警前转,6,6,,page/alarm/alarmForwarding.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,告警前转
2017,网元管理,7,1,,page/nfManage/list.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,网元管理
2018,参数配置,7,2,,page/configParam/list.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,参数配置
2019,软件管理,7,3,,page/softwareManage/softwareManage.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,软件管理
2020,备份管理,7,5,,page/softwareManage/backupManage.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,备份管理
2021,配置参数设置,7,6,,page/configParam/configParamSet.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,配置参数设置
2022,任务管理,8,1,,page/task/list.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,任务管理
2023,性能数据,8,2,,page/repair/list.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,性能数据
2024,性能报表,8,3,,page/task/perfReport.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,性能报表
2025,性能门限,8,4,,page/task/threshold.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,性能门限
2026,黄金指标,8,5,,page/gold/list.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,黄金指标
2027,性能通用设置,8,7,,page/task/perfReportSet.html,1,0,M,0,0,page,#,admin,1.69E+12,admin,0,性能通用设置
2028,自定义指标,8,8,,page/indicators/list.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,自定义指标
2029,对象模板,8,8,,page/objectTemplate/list.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,1.69E+12,对象模板
2030,自定义测量数据,8,9,,page/indicators/measuringData.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,1.69E+12,自定义测量数据
2031,拓扑视图,15,1,,page/topology/topologyList.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,0,拓扑视图
2032,系统维护,14,1,,page/systemManage/systemOperation.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,系统维护
2033,稳定性事件列表,14,2,,page/systemManage/stabilityEvents.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,1.69E+12,稳定性事件列表
2034,稳定性统计报告,14,3,,page/systemManage/stabilityReports.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,1.69E+12,稳定性统计报告
2035,系统备份,14,4,,page/systemManage/systemBackup.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,1.69E+12,系统备份
2036,系统可扩展,14,5,,page/systemManage/systemExtended.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,1.69E+12,"""系统可扩展"
2037,证书管理,14,6,,page/systemManage/certificateManage.html,1,0,M,1,0,page,#,admin,1.69E+12,admin,1.69E+12,证书管理
2038,北向操作日志,13,0,,page/log/nbiOperLogList.html,1,0,M,0,0,page,#,admin,1.69E+12,admin,0,北向操作日志
2039,北向告警日志,13,2,,page/log/nbiAlarmLog.html,1,0,M,0,0,page,#,admin,1.69E+12,admin,1.69E+12,北向告警日志
2040,北向通用设置,13,3,,page/log/nbiSet.html,1,0,M,0,0,page,#,admin,1.69E+12,admin,0,北向通用设置
2041,用户管理,12,1,,page/user/list.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,用户管理
2042,在线状态,12,2,,page/user/online.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,在线状态
2043,用户组管理,12,2,,page/group/list.html,1,0,M,0,0,page,#,admin,1.69E+12,admin,1.69E+12,用户组管理
2044,安全策略,12,3,,page/user/securityPolicy.html,1,0,M,0,0,page,#,admin,1.69E+12,admin,1.69E+12,安全策略
2045,操作日志,11,1,,page/log/operLogList.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,操作日志
2046,mml操作日志,11,2,,page/log/mmlOperLogList.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,mml操作日志
2047,告警日志,11,3,,page/log/alarmLogList.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,告警日志
2048,安全日志,11,4,,page/log/securityLogList.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,安全日志
2049,告警前转日志,11,7,,page/log/forwardingLog.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,告警前转日志
2050,日志通用管理,11,8,,page/log/logSet.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,日志通用管理
2051,系统日志,11,9,,page/log/systemLog.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,系统日志
2052,跟踪任务,10,1,,page/trace/taskList.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,1.69E+12,跟踪任务
2053,信令分析,10,2,,page/trace/traceShow.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,1.69E+12,信令分析
2054,核心网池,9,0,,page/mml/poolList.html,1,0,M,0,0,page,#,admin,1.69E+12,admin,1.69E+12,核心网池
2055,操作维护MML,9,1,,page/mml/omcList.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,操作维护MML
2056,网元操作MML,9,3,,page/mml/list.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,网元操作MML
2057,用户数据MML,9,4,,page/mml/udmList.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,用户数据MML
2058,操作维护设置,9,5,,page/mml/mmlSet.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,操作维护设置
2059,角色管理,12,6,,page/role/list.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,角色管理
2060,菜单管理,12,7,,page/menu/list.html,1,0,M,0,1,page,#,admin,1.69E+12,admin,0,菜单管理
2065,数据库URL查询,0,10011,,,1,1,B,0,0,page,#,admin,1.69E+12,admin,0,数据库查询操作
2066,数据库URL新增,0,10012,,,1,1,B,0,0,page,#,admin,1.69E+12,admin,0,数据库URL新增
2067,数据库URL更新,0,10013,,,1,1,B,0,0,page,#,admin,1.69E+12,admin,0,数据库URL更新
2068,数据库URL删除,0,10014,,,1,1,B,0,0,page,#,admin,1.69E+12,admin,0,数据库URL删除
2069,用户信息,0,559,page,,1,0,D,0,1,page,fa fa-home,admin,1.69E+12,admin,1.69E+12,
2070,UDM鉴权用户,2069,1,,page/nfUserInfo/authList.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,1.69E+12,
2071,5G基站信息,2069,4,,page/nfUserInfo/5gBase.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,1.69E+12,
2072,IMS在线用户,2069,3,,page/baseInfo/imsOnline.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,1.69E+12,
2073,UDM签约用户,2069,2,,page/nfUserInfo/subsList.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,1.69E+12,
2074,UE在线信息,2069,4,,page/baseInfo/ueInfoList.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,1.69E+12,
2075,menu.config.neManage,4,1,neManage,configManage/neManage/index,1,1,M,1,1,configManage:neManage:index,icon-biaoqing,supervisor,1.70E+12,,0,menu.config.neManageRemark
2076,menu.config.configNE,4,2,configParam,configManage/configParam/index,1,1,M,1,1,configManage:configParam:index,icon-piliang,supervisor,1.70E+12,,0,menu.config.configNERemark
2077,信令抓包,10,3,,page/trace/pcap.html,1,0,M,1,1,page,#,admin,1.69E+12,admin,0,tcpdump抓包pcap文件
2078,menu.config.backupManage,4,3,backupManage,configManage/backupManage/index,1,1,M,1,1,configManage:backupManage:index,icon-soutubiao,supervisor,1.70E+12,,0,menu.config.backupManageRemark
2079,menu.config.softwareManage,4,4,softwareManage,configManage/softwareManage/index,1,1,M,1,1,configManage:softwareManage:index,icon-huidingbu,supervisor,1.70E+12,,0,menu.config.softwareManageRemark
2080,menu.ueUser.onlineIMS,5,4,ims,neUser/ims/index,1,1,M,1,1,neUser:ims:index,icon-xiangmuchengyuan,supervisor,1.70E+12,,0,menu.ueUser.onlineIMSRemark
2081,menu.ueUser.onlineUE,5,6,ue,neUser/ue/index,1,1,M,1,1,neUser:ue:index,icon-xiangmuchengyuan,supervisor,1.70E+12,,0,menu.ueUser.onlineUERemark
2082,menu.ueUser.base5G,5,7,base5G,neUser/base5G/index,1,1,M,1,1,neUser:base5G:index,icon-paixu,supervisor,1.70E+12,,0,menu.ueUser.base5GRemark
2083,menu.trace,2087,30,traceManage,,1,0,D,1,1,,icon-paixu,supervisor,1.70E+12,,0,menu.traceRemark
2084,menu.trace.task,2083,1,task,traceManage/task/index,1,1,M,1,1,traceManage:task:index,icon-chexiao,supervisor,1.70E+12,,0,menu.trace.taskRemark
2085,menu.trace.analysis,2083,2,analysis,traceManage/analysis/index,1,1,M,1,1,traceManage:analysis:index,icon-gongnengjieshao,supervisor,1.70E+12,,0,menu.trace.analysisRemark
2086,menu.trace.pcap,2083,3,pcap,traceManage/pcap/index,1,1,M,1,1,traceManage:pcap:index,icon-soutubiao,supervisor,1.70E+12,,0,menu.trace.pcapRemark
2087,menu.fault,0,2,faultManage,,1,0,D,1,1,,icon-jinggao,supervisor,1.70E+12,,0,menu.faultRemark
2088,menu.fault.active,2129,1,active-alarm,faultManage/active-alarm/index,1,1,M,1,1,faultManage:active-alarm:index,icon-wenjian,supervisor,1.70E+12,,0,menu.fault.activemRemark
2089,menu.log,0,9,logManage,,1,0,D,1,1,,icon-fuzhidaima,supervisor,1.70E+12,,0,menu.logRemark
2090,menu.log.operatOld,2089,1,operation,logManage/operation/index,1,0,M,0,0,logManage:operation:index,icon-fuzhidaima,supervisor,1.70E+12,,0,menu.log.operatOldRemark
2091,menu.log.mml,2089,2,mml,logManage/mml/index,1,1,M,1,1,logManage:mml:index,icon-wocanyu,supervisor,1.70E+12,,0,menu.log.mmlRemark
2092,menu.log.alarm,2089,3,alarm-log,logManage/alarm/index,1,1,M,1,1,logManage:alarm:index,icon-fuzhidaima,supervisor,1.70E+12,,0,menu.log.alarmRemark
2093,menu.log.securityOld,2089,6,security-log,logManage/security/index,1,0,M,0,0,logManage/security/index,icon-gongnengjieshao,supervisor,1.70E+12,,0,menu.log.securityOldRemark
2094,menu.log.forwarding,2089,7,forwarding,logManage/forwarding/index,1,0,M,1,1,logManage:forwarding:index,icon-huizhiguize,supervisor,1.70E+12,,0,menu.log.forwardingRemark
2095,menu.log.set,2089,15,logSet,logManage/logSet/index,1,0,M,1,1,logManage:logSet:index,icon-you,supervisor,1.70E+12,,0,menu.log.setRemark
2096,menu.monitor.sessionUser,2,10,session,monitor/session/index,1,0,M,0,0,monitor:session:index,icon-gerenzhanghu,supervisor,1.70E+12,,0,menu.monitor.sessionUserRemark
2097,menu.fault.history,2129,2,history-alarm,faultManage/history-alarm/index,1,1,M,1,1,faultManage/history-alarm/index,icon-huizhiguize,supervisor,1.70E+12,,0,menu.fault.historyRemark
2098,menu.fault.set,2129,100,fault-setting,faultManage/fault-setting/index,1,0,M,1,1,faultManage/fault-setting/index,icon-gonggaodayi,supervisor,1.70E+12,,0,menu.fault.setRemark
2099,menu.perf,0,5,perfManage,,1,0,D,1,1,,icon-soutubiao,supervisor,1.70E+12,,0,menu.perfRemark
2100,menu.perf.task,2099,1,taskManage,perfManage/taskManage/index,1,1,M,1,1,perfManage:taskManage:index,icon-wofaqi,supervisor,1.70E+12,,0,menu.perf.taskRemark
2101,menu.perf.data,2099,2,perfData,perfManage/perfData/index,1,1,M,1,1,perfManage:perfData:index,icon-soutubiao,supervisor,1.70E+12,,0,menu.perf.dataRemark
2102,menu.perf.report,2099,3,perfReport,perfManage/perfReport/index,1,0,M,0,0,perfManage:perfReport:index,icon-gonggaodayi,supervisor,1.70E+12,,0,menu.perf.reportRemark
2103,menu.perf.threshold,2099,4,perfThreshold,perfManage/perfThreshold/index,1,0,M,1,1,perfManage:perfThreshold:index,icon-zhuanrang,supervisor,1.70E+12,,0,menu.perf.thresholdRemark
2104,menu.perf.kpi,2099,5,goldTarget,perfManage/goldTarget/index,1,1,M,1,1,perfManage:goldTarget:index,icon-soutubiao,supervisor,1.70E+12,,0,menu.perf.kpiRemark
2105,menu.perf.customTarget,2099,6,customTarget,perfManage/customTarget/index,1,1,M,0,0,perfManage:customTarget:index,icon-fanhui1,supervisor,1.70E+12,,0,menu.perf.customTargetRemark
2106,menu.perf.set,2099,7,perfSet,perfManage/perfSet/index,1,0,M,0,0,perfManage:perfSet:index,icon-gonggao,supervisor,1.70E+12,,0,menu.perf.setRemark
2107,menu.mml,0,8,mmlManage,,1,0,D,1,1,,icon-zhizuoliucheng,supervisor,1.70E+12,,0,menu.mmlRemark
2108,menu.mml.ne,2107,1,neOperate,mmlManage/neOperate/index,1,1,M,1,1,mmlManage:neOperate:index,icon-huizhiguize,supervisor,1.70E+12,,0,menu.mml.neRemark
2109,menu.mml.udm,2107,2,udmOperate,mmlManage/udmOperate/index,1,1,M,1,1,mmlManage:udmOperate:index,icon-gonggaodayi,supervisor,1.70E+12,,0,menu.mml.udmRemark
2110,menu.mml.set,2107,4,mmlSet,mmlManage/mmlSet/index,1,1,M,1,1,mmlManage:mmlSet:index,icon-wofaqi,supervisor,1.70E+12,,0,menu.mml.setRemark
2111,menu.mml.omc,2107,3,omcOperate,mmlManage/omcOperate/index,1,1,M,1,1,mmlManage:omcOperate:index,icon-huizhiguize,supervisor,1.70E+12,,0,menu.mml.omcRemark
2112,menu.config.licenseManage,4,5,license,configManage/license/index,1,1,M,1,1,configManage/license/index,icon-shang,supervisor,1.70E+12,,0,menu.config.licenseManageRemark
2113,menu.security,0,14,security,,1,0,D,1,1,,icon-suofang,supervisor,1.70E+12,,0,menu.securityRemark
2114,menu.system.systemSet,1,12,setting,system/setting/index,1,1,M,1,1,system:setting:index,icon-piliang,supervisor,1.70E+12,,0,menu.system.systemSetRemark
2115,menu.system.systemResource,1,13,monitor,monitor/monitor/index,1,1,M,1,1,monitor:monitor:info,icon-soutubiao,supervisor,1.70E+12,,0,menu.system.systemResourceRemark
2116,menu.config.configNEForm,4,2,configParamForm,configManage/configParamForm/index,1,0,M,1,1,configManage:configParam:index,icon-wofaqi,supervisor,1.70E+12,,0,menu.config.configNEFormRemark
2117,menu.config.configNETree,4,2,configParamTree,configManage/configParamTree/index,1,0,M,1,1,configManage:configParam:index,icon-wofaqi,supervisor,1.70E+12,,0,menu.config.configNETreeRemark
2118,menu.config.configNETreeTable,4,2,configNETreeTable,configManage/configParamTreeTable/index,1,0,M,1,1,configManage:configParam:index,icon-wofaqi,supervisor,1.70E+12,,0,menu.config.configNETreeTableRemark
2119,menu.ueUser.n3iwf,5,8,n3iwf,neUser/n3iwf/index,1,0,M,0,1,neUser:n3iwf:index,icon-paixu,supervisor,1.70E+12,,0,
2120,menu.ueUser.pcf,5,9,pcf,neUser/pcf/index,1,0,M,1,1,neUser:pcf:index,icon-paixu,supervisor,1.70E+12,,0,
2121,menu.system.user.editRole,100,8,,,1,1,B,1,1,system:user:editRole,#,supervisor,1.70E+12,,0,
2122,menu.system.setting.i18n,2114,1,,,1,1,B,1,1,system:setting:i18n,#,supervisor,1.70E+12,supervisor,1.70E+12,menu.system.setting.i18nRemark
2123,menu.log.neFile,2089,9,neFile,logManage/neFile/index,1,0,M,1,1,logManage:neFile:index,icon-tubiaohuizhi,supervisor,1.70E+12,,0,
2124,menu.neUser.nssf,5,10,nssf,neUser/nssf/index,1,0,M,0,1,neUser:nssf:index,icon-daimayingyong,supervisor,1.70E+12,supervisor,1.70E+12,
2125,menu.neUser.nssfAmf,5,11,nssfAmf,neUser/nssfAmf/index,1,0,M,0,1,neUser:nssfAmf:index,icon-paixu,supervisor,1.70E+12,,0,
2126,menu.monitor.topology,2130,10,topology,monitor/topology/index,1,0,M,1,1,monitor:topology:index,icon-fangda,supervisor,1.70E+12,,0,
2127,menu.monitor.topologyBuild,2130,30,topologyBuild,monitor/topologyBuild/index,1,0,M,1,1,monitor:topologyBuild:index,icon-fangda,supervisor,1.70E+12,supervisor,1.70E+12,
2128,menu.monitor.topologyArchitecture,2130,20,topologyArchitecture,monitor/topologyArchitecture/index,1,0,M,1,1,monitor:topologyArchitecture:index,icon-soutubiao,supervisor,1.70E+12,supervisor,1.70E+12,
2129,menu.alarm,2087,10,alarm,,1,0,D,1,1,,icon-jinggao,supervisor,1.7048E+12,supervisor,"1704847028995",,,
2130,menu.topology,2087,20,topology,,1,0,D,1,1,,icon-anzhuo,supervisor,1.7048E+12,supervisor,"1704847055540",,,
2131,menu.dashboard,2087,0,dashboard,,1,0,D,1,1,,icon-soutubiao,supervisor,1.70555E+12,supervisor,1.70555E+12,
2132,menu.dashboard.overview,2131,1,overview,dashboard/overview/index,1,0,M,1,1,dashboard:overview:index,icon-paixu,supervisor,1.70555E+12,,0,
2133,menu.dashboard.cdr,2131,3,cdr,dashboard/cdr/index,1,0,M,1,1,dashboard:cdr:index,icon-paixu,supervisor,1.70555E+12,,0,
1 menu_id menu_name parent_id menu_sort path component is_frame is_cache menu_type visible status perms icon create_by create_time update_by update_time remark
2 1 menu.system 0 16 system 1 1 D 1 1 icon-xiangmu supervisor 1.70E+12 0 menu.systemRemark
3 2 menu.monitor 0 2 monitor 1 1 D 0 0 icon-wenjian supervisor 1.70E+12 0 menu.monitorRemark
4 3 menu.tools 0 15 tool 1 1 D 1 1 icon-wenjian supervisor 1.70E+12 0 menu.toolsRemark
5 4 menu.config 0 3 configManage 1 0 D 1 1 icon-huizhiguize supervisor 1.70E+12 0 menu.configRemark
6 5 menu.ueUser 0 7 neUser 1 0 D 1 1 icon-wocanyu supervisor 1.70E+12 0 menu.ueUserRemark
7 6 故障管理 0 50 page 1 0 D 0 1 page fa fa-home admin 1.69E+12 admin 1.69E+12 故障管理
8 7 配置管理 0 550 page 1 0 D 0 1 page fa fa-home admin 1.69E+12 admin 0 配置管理
9 8 性能管理 0 551 page 1 0 D 0 1 page fa fa-home admin 1.69E+12 admin 0 性能管理
10 9 操作维护 0 552 page 1 0 D 0 1 page fa fa-home admin 1.69E+12 admin 0 操作维护
11 10 跟踪管理 0 553 page 1 0 D 0 1 page fa fa-home admin 1.69E+12 admin 1.69E+12 跟踪管理
12 11 日志管理 0 554 page 1 0 D 0 1 page fa fa-home admin 1.69E+12 admin 0 日志管理
13 12 安全管理 0 555 page 1 0 D 0 1 page fa fa-home admin 1.69E+12 admin 0 安全管理
14 13 北向管理 0 556 page 1 0 D 0 0 page fa fa-home admin 1.69E+12 admin 1.69E+12 北向管理
15 14 系统管理 0 557 page 1 0 D 0 1 page fa fa-home admin 1.69E+12 admin 0 系统管理
16 15 拓扑管理 0 558 page 1 0 D 0 0 page fa fa-home admin 1.69E+12 admin 0 拓扑管理
17 100 menu.security.user 2113 1 user system/user/index 1 1 M 1 1 system:user:list icon-wocanyu supervisor 1.70E+12 0 menu.security.userRemark
18 101 menu.security.role 2113 3 role system/role/index 1 1 M 1 1 system:role:list icon-anzhuo supervisor 1.70E+12 0 menu.security.roleRemark
19 102 menu.security.roleUser 2113 3 role/inline/auth-user/:roleId system/role/auth-user 1 1 M 0 1 system:role:auth # supervisor 1.70E+12 0 menu.security.roleUserRemark
20 103 menu.system.menu 1 4 menu system/menu/index 1 1 M 1 1 system:menu:list icon-wofaqi supervisor 1.70E+12 0 menu.system.menuRemark
21 104 menu.security.dept 2113 5 dept system/dept/index 1 1 M 1 1 system:dept:list icon-yuzhanghao1 supervisor 1.70E+12 0 menu.security.deptRemark
22 105 menu.security.post 2113 6 post system/post/index 1 1 M 1 1 system:post:list icon-gonggaodayi supervisor 1.70E+12 0 menu.security.postRemark
23 106 menu.system.dictType 1 7 dict system/dict/index 1 1 M 1 1 system:dict:list icon-tubiaoku supervisor 1.70E+12 0 menu.system.dictTypeRemark
24 107 menu.system.dictData 1 8 dict/inline/data/:dictId system/dict/data 1 1 M 0 1 system:dict:data # supervisor 1.70E+12 0 menu.system.dictDataRemark
25 108 menu.system.paramSet 1 9 config system/config/index 1 1 M 1 1 system:config:list icon-gongnengjieshao supervisor 1.70E+12 0 menu.system.paramSetRemark
26 111 menu.system.systemLog 1 11 log 1 1 D 0 0 # supervisor 1.70E+12 0 menu.system.systemLogRemark
27 112 menu.system.systemInfo 1 3 system-info monitor/system/info 1 1 M 1 1 monitor:system:info icon-fuzhidaima supervisor 1.70E+12 0 menu.system.systemInfoRemark
28 113 menu.system.cacheInfo 1 2 cache-info monitor/cache/info 1 1 M 0 1 monitor:cache:info icon-gongnengjieshao supervisor 1.70E+12 0 menu.system.cacheInfoRemark
29 114 menu.system.cache 1 3 cache monitor/cache/index 1 1 M 0 1 monitor:cache:list icon-tubiaoku supervisor 1.70E+12 0 menu.system.cacheRemark
30 115 menu.security.onlineUser 2113 2 online monitor/online/index 1 1 M 1 1 monitor:online:list icon-xiangmuchengyuan supervisor 1.70E+12 0 menu.security.onlineUserRemark
31 116 menu.system.job 1 1 job monitor/job/index 1 1 M 1 1 monitor:job:list icon-lishi supervisor 1.70E+12 0 menu.system.jobRemark
32 117 menu.system.jobLog 1 2 /system/job/inline/log/:jobId monitor/job/log 1 1 M 0 1 monitor:job:log # supervisor 1.70E+12 0 menu.system.jobLogRemark
33 118 menu.tools.help 3 1 help tool/help/index 1 1 M 1 1 monitor:help:list # supervisor 1.70E+12 0 menu.tools.helpRemark
34 500 menu.log.operat 2089 1 operate system/log/operate/index 1 1 M 1 1 system:log:operate:list icon-fuzhidaima supervisor 1.70E+12 0 menu.log.operatRemark
35 501 menu.log.login 2089 2 login system/log/login/index 1 1 M 1 1 system:log:login:list icon-fuzhidaima supervisor 1.70E+12 0 menu.log.loginRemark
36 1000 menu.common.query 100 1 1 1 B 1 1 system:user:query # supervisor 1.70E+12 0
37 1001 menu.common.add 100 2 1 1 B 1 1 system:user:add # supervisor 1.70E+12 0
38 1002 menu.common.edit 100 3 1 1 B 1 1 system:user:edit # supervisor 1.70E+12 0
39 1003 menu.common.delete 100 4 1 1 B 1 1 system:user:remove # supervisor 1.70E+12 0
40 1004 menu.common.export 100 5 1 1 B 1 1 system:user:export # supervisor 1.70E+12 0
41 1005 menu.common.import 100 6 1 1 B 1 1 system:user:import # supervisor 1.70E+12 0
42 1006 menu.common.reset 100 7 1 1 B 1 1 system:user:resetPwd # supervisor 1.70E+12 0
43 1007 menu.common.query 101 1 1 1 B 1 1 system:role:query # supervisor 1.70E+12 0
44 1008 menu.common.add 101 2 1 1 B 1 1 system:role:add # supervisor 1.70E+12 0
45 1009 menu.common.edit 101 3 1 1 B 1 1 system:role:edit # supervisor 1.70E+12 0
46 1010 menu.common.delete 101 4 1 1 B 1 1 system:role:remove # supervisor 1.70E+12 0
47 1011 menu.common.export 101 5 1 1 B 1 1 system:role:export # supervisor 1.70E+12 0
48 1012 menu.common.query 103 1 1 1 B 1 1 system:menu:query # supervisor 1.70E+12 0
49 1013 menu.common.add 103 2 1 1 B 1 1 system:menu:add # supervisor 1.70E+12 0
50 1014 menu.common.edit 103 3 1 1 B 1 1 system:menu:edit # supervisor 1.70E+12 0
51 1015 menu.common.delete 103 4 1 1 B 1 1 system:menu:remove # supervisor 1.70E+12 0
52 1016 menu.common.query 104 1 1 1 B 1 1 system:dept:query # supervisor 1.70E+12 0
53 1017 menu.common.add 104 2 1 1 B 1 1 system:dept:add # supervisor 1.70E+12 0
54 1018 menu.common.edit 104 3 1 1 B 1 1 system:dept:edit # supervisor 1.70E+12 0
55 1019 menu.common.delete 104 4 1 1 B 1 1 system:dept:remove # supervisor 1.70E+12 0
56 1020 menu.common.query 105 1 1 1 B 1 1 system:post:query # supervisor 1.70E+12 0
57 1021 menu.common.add 105 2 1 1 B 1 1 system:post:add # supervisor 1.70E+12 0
58 1022 menu.common.edit 105 3 1 1 B 1 1 system:post:edit # supervisor 1.70E+12 0
59 1023 menu.common.delete 105 4 1 1 B 1 1 system:post:remove # supervisor 1.70E+12 0
60 1024 menu.common.export 105 5 1 1 B 1 1 system:post:export # supervisor 1.70E+12 0
61 1025 menu.common.query 106 1 # 1 1 B 1 1 system:dict:query # supervisor 1.70E+12 0
62 1026 menu.common.add 106 2 # 1 1 B 1 1 system:dict:add # supervisor 1.70E+12 0
63 1027 menu.common.edit 106 3 # 1 1 B 1 1 system:dict:edit # supervisor 1.70E+12 0
64 1028 menu.common.delete 106 4 # 1 1 B 1 1 system:dict:remove # supervisor 1.70E+12 0
65 1029 menu.common.export 106 5 # 1 1 B 1 1 system:dict:export # supervisor 1.70E+12 0
66 1030 menu.common.query 108 1 # 1 1 B 1 1 system:config:query # supervisor 1.70E+12 0
67 1031 menu.common.add 108 2 # 1 1 B 1 1 system:config:add # supervisor 1.70E+12 0
68 1032 menu.common.edit 108 3 # 1 1 B 1 1 system:config:edit # supervisor 1.70E+12 0
69 1033 menu.common.delete 108 4 # 1 1 B 1 1 system:config:remove # supervisor 1.70E+12 0
70 1034 menu.common.export 108 5 # 1 1 B 1 1 system:config:export # supervisor 1.70E+12 0
71 1039 menu.common.query 500 1 # 1 1 B 1 1 system:log:operate:query # supervisor 1.70E+12 0
72 1040 menu.common.delete 500 2 # 1 1 B 1 1 system:log:operate:remove # supervisor 1.70E+12 0
73 1041 menu.common.export 500 3 # 1 1 B 1 1 system:log:operate:export # supervisor 1.70E+12 0
74 1042 menu.common.query 501 1 # 1 1 B 1 1 system:log:login:query # supervisor 1.70E+12 0
75 1043 menu.common.delete 501 2 # 1 1 B 1 1 system:log:login:remove # supervisor 1.70E+12 0
76 1044 menu.common.export 501 3 # 1 1 B 1 1 system:log:login:export # supervisor 1.70E+12 0
77 1045 menu.common.unlock 501 4 # 1 1 B 1 1 system:log:login:unlock # supervisor 1.70E+12 0
78 1046 menu.common.query 114 1 # 1 1 B 1 1 monitor:cache:query # supervisor 1.70E+12 0
79 1047 menu.common.delete 114 2 # 1 1 B 1 1 monitor:cache:remove # supervisor 1.70E+12 0
80 1048 menu.common.query 115 1 # 1 1 B 1 1 monitor:online:query # supervisor 1.70E+12 0
81 1049 menu.forcedQuit.batch 115 2 # 1 1 B 1 1 monitor:online:batchLogout # supervisor 1.70E+12 0
82 1050 menu.forcedQuit.single 115 3 # 1 1 B 1 1 monitor:online:forceLogout # supervisor 1.70E+12 0
83 1051 menu.common.query 116 1 # 1 1 B 1 1 monitor:job:query # supervisor 1.70E+12 0
84 1052 menu.common.add 116 2 # 1 1 B 1 1 monitor:job:add # supervisor 1.70E+12 0
85 1053 menu.common.edit 116 3 # 1 1 B 1 1 monitor:job:edit # supervisor 1.70E+12 0
86 1054 menu.common.delete 116 4 # 1 1 B 1 1 monitor:job:remove # supervisor 1.70E+12 0
87 1055 menu.common.edit 116 5 # 1 1 B 1 1 monitor:job:changeStatus # supervisor 1.70E+12 0
88 1056 menu.common.export 116 6 # 1 1 B 1 1 monitor:job:export # supervisor 1.70E+12 0
89 2009 menu.ueUser.authUDM 5 1 auth neUser/auth/index 1 1 M 1 1 neUser:auth:index icon-xiangmuchengyuan supervisor 1.70E+12 0 menu.ueUser.authUDMRemark
90 2010 menu.ueUser.subUDM 5 2 sub neUser/sub/index 1 1 M 1 1 neUser:sub:index icon-xiangmuchengyuan supervisor 1.70E+12 0 menu.ueUser.subUDMRemark
91 2011 活动告警 6 1 page/alarm/alarmListDown.html 1 0 M 1 1 page # admin 1.69E+12 admin 1.69E+12 活动告警
92 2012 历史告警 6 2 page/alarm/AlarmListHistory.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 历史告警
93 2013 故障通用设置 6 3 page/alarm/alarmInfoConfig.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 故障通用设置
94 2014 定时同步设置 6 4 page/alarm/synchronous.html 1 0 M 1 0 page # admin 1.69E+12 admin 1.69E+12 定时同步设置
95 2015 健康状态检查 6 5 page/alarm/healthCheck.html 1 0 M 1 0 page # admin 1.69E+12 admin 1.69E+12 健康状态检查
96 2016 告警前转 6 6 page/alarm/alarmForwarding.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 告警前转
97 2017 网元管理 7 1 page/nfManage/list.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 网元管理
98 2018 参数配置 7 2 page/configParam/list.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 参数配置
99 2019 软件管理 7 3 page/softwareManage/softwareManage.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 软件管理
100 2020 备份管理 7 5 page/softwareManage/backupManage.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 备份管理
101 2021 配置参数设置 7 6 page/configParam/configParamSet.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 配置参数设置
102 2022 任务管理 8 1 page/task/list.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 任务管理
103 2023 性能数据 8 2 page/repair/list.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 性能数据
104 2024 性能报表 8 3 page/task/perfReport.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 性能报表
105 2025 性能门限 8 4 page/task/threshold.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 性能门限
106 2026 黄金指标 8 5 page/gold/list.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 黄金指标
107 2027 性能通用设置 8 7 page/task/perfReportSet.html 1 0 M 0 0 page # admin 1.69E+12 admin 0 性能通用设置
108 2028 自定义指标 8 8 page/indicators/list.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 自定义指标
109 2029 对象模板 8 8 page/objectTemplate/list.html 1 0 M 1 0 page # admin 1.69E+12 admin 1.69E+12 对象模板
110 2030 自定义测量数据 8 9 page/indicators/measuringData.html 1 0 M 1 0 page # admin 1.69E+12 admin 1.69E+12 自定义测量数据
111 2031 拓扑视图 15 1 page/topology/topologyList.html 1 0 M 1 0 page # admin 1.69E+12 admin 0 拓扑视图
112 2032 系统维护 14 1 page/systemManage/systemOperation.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 系统维护
113 2033 稳定性事件列表 14 2 page/systemManage/stabilityEvents.html 1 0 M 1 0 page # admin 1.69E+12 admin 1.69E+12 稳定性事件列表
114 2034 稳定性统计报告 14 3 page/systemManage/stabilityReports.html 1 0 M 1 0 page # admin 1.69E+12 admin 1.69E+12 稳定性统计报告
115 2035 系统备份 14 4 page/systemManage/systemBackup.html 1 0 M 1 0 page # admin 1.69E+12 admin 1.69E+12 系统备份
116 2036 系统可扩展 14 5 page/systemManage/systemExtended.html 1 0 M 1 0 page # admin 1.69E+12 admin 1.69E+12 "系统可扩展
117 2037 证书管理 14 6 page/systemManage/certificateManage.html 1 0 M 1 0 page # admin 1.69E+12 admin 1.69E+12 证书管理
118 2038 北向操作日志 13 0 page/log/nbiOperLogList.html 1 0 M 0 0 page # admin 1.69E+12 admin 0 北向操作日志
119 2039 北向告警日志 13 2 page/log/nbiAlarmLog.html 1 0 M 0 0 page # admin 1.69E+12 admin 1.69E+12 北向告警日志
120 2040 北向通用设置 13 3 page/log/nbiSet.html 1 0 M 0 0 page # admin 1.69E+12 admin 0 北向通用设置
121 2041 用户管理 12 1 page/user/list.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 用户管理
122 2042 在线状态 12 2 page/user/online.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 在线状态
123 2043 用户组管理 12 2 page/group/list.html 1 0 M 0 0 page # admin 1.69E+12 admin 1.69E+12 用户组管理
124 2044 安全策略 12 3 page/user/securityPolicy.html 1 0 M 0 0 page # admin 1.69E+12 admin 1.69E+12 安全策略
125 2045 操作日志 11 1 page/log/operLogList.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 操作日志
126 2046 mml操作日志 11 2 page/log/mmlOperLogList.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 mml操作日志
127 2047 告警日志 11 3 page/log/alarmLogList.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 告警日志
128 2048 安全日志 11 4 page/log/securityLogList.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 安全日志
129 2049 告警前转日志 11 7 page/log/forwardingLog.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 告警前转日志
130 2050 日志通用管理 11 8 page/log/logSet.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 日志通用管理
131 2051 系统日志 11 9 page/log/systemLog.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 系统日志
132 2052 跟踪任务 10 1 page/trace/taskList.html 1 0 M 0 1 page # admin 1.69E+12 admin 1.69E+12 跟踪任务
133 2053 信令分析 10 2 page/trace/traceShow.html 1 0 M 0 1 page # admin 1.69E+12 admin 1.69E+12 信令分析
134 2054 核心网池 9 0 page/mml/poolList.html 1 0 M 0 0 page # admin 1.69E+12 admin 1.69E+12 核心网池
135 2055 操作维护MML 9 1 page/mml/omcList.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 操作维护MML
136 2056 网元操作MML 9 3 page/mml/list.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 网元操作MML
137 2057 用户数据MML 9 4 page/mml/udmList.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 用户数据MML
138 2058 操作维护设置 9 5 page/mml/mmlSet.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 操作维护设置
139 2059 角色管理 12 6 page/role/list.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 角色管理
140 2060 菜单管理 12 7 page/menu/list.html 1 0 M 0 1 page # admin 1.69E+12 admin 0 菜单管理
141 2065 数据库URL查询 0 10011 1 1 B 0 0 page # admin 1.69E+12 admin 0 数据库查询操作
142 2066 数据库URL新增 0 10012 1 1 B 0 0 page # admin 1.69E+12 admin 0 数据库URL新增
143 2067 数据库URL更新 0 10013 1 1 B 0 0 page # admin 1.69E+12 admin 0 数据库URL更新
144 2068 数据库URL删除 0 10014 1 1 B 0 0 page # admin 1.69E+12 admin 0 数据库URL删除
145 2069 用户信息 0 559 page 1 0 D 0 1 page fa fa-home admin 1.69E+12 admin 1.69E+12
146 2070 UDM鉴权用户 2069 1 page/nfUserInfo/authList.html 1 0 M 1 1 page # admin 1.69E+12 admin 1.69E+12
147 2071 5G基站信息 2069 4 page/nfUserInfo/5gBase.html 1 0 M 1 1 page # admin 1.69E+12 admin 1.69E+12
148 2072 IMS在线用户 2069 3 page/baseInfo/imsOnline.html 1 0 M 1 1 page # admin 1.69E+12 admin 1.69E+12
149 2073 UDM签约用户 2069 2 page/nfUserInfo/subsList.html 1 0 M 1 1 page # admin 1.69E+12 admin 1.69E+12
150 2074 UE在线信息 2069 4 page/baseInfo/ueInfoList.html 1 0 M 1 1 page # admin 1.69E+12 admin 1.69E+12
151 2075 menu.config.neManage 4 1 neManage configManage/neManage/index 1 1 M 1 1 configManage:neManage:index icon-biaoqing supervisor 1.70E+12 0 menu.config.neManageRemark
152 2076 menu.config.configNE 4 2 configParam configManage/configParam/index 1 1 M 1 1 configManage:configParam:index icon-piliang supervisor 1.70E+12 0 menu.config.configNERemark
153 2077 信令抓包 10 3 page/trace/pcap.html 1 0 M 1 1 page # admin 1.69E+12 admin 0 tcpdump抓包pcap文件
154 2078 menu.config.backupManage 4 3 backupManage configManage/backupManage/index 1 1 M 1 1 configManage:backupManage:index icon-soutubiao supervisor 1.70E+12 0 menu.config.backupManageRemark
155 2079 menu.config.softwareManage 4 4 softwareManage configManage/softwareManage/index 1 1 M 1 1 configManage:softwareManage:index icon-huidingbu supervisor 1.70E+12 0 menu.config.softwareManageRemark
156 2080 menu.ueUser.onlineIMS 5 4 ims neUser/ims/index 1 1 M 1 1 neUser:ims:index icon-xiangmuchengyuan supervisor 1.70E+12 0 menu.ueUser.onlineIMSRemark
157 2081 menu.ueUser.onlineUE 5 6 ue neUser/ue/index 1 1 M 1 1 neUser:ue:index icon-xiangmuchengyuan supervisor 1.70E+12 0 menu.ueUser.onlineUERemark
158 2082 menu.ueUser.base5G 5 7 base5G neUser/base5G/index 1 1 M 1 1 neUser:base5G:index icon-paixu supervisor 1.70E+12 0 menu.ueUser.base5GRemark
159 2083 menu.trace 2087 30 traceManage 1 0 D 1 1 icon-paixu supervisor 1.70E+12 0 menu.traceRemark
160 2084 menu.trace.task 2083 1 task traceManage/task/index 1 1 M 1 1 traceManage:task:index icon-chexiao supervisor 1.70E+12 0 menu.trace.taskRemark
161 2085 menu.trace.analysis 2083 2 analysis traceManage/analysis/index 1 1 M 1 1 traceManage:analysis:index icon-gongnengjieshao supervisor 1.70E+12 0 menu.trace.analysisRemark
162 2086 menu.trace.pcap 2083 3 pcap traceManage/pcap/index 1 1 M 1 1 traceManage:pcap:index icon-soutubiao supervisor 1.70E+12 0 menu.trace.pcapRemark
163 2087 menu.fault 0 2 faultManage 1 0 D 1 1 icon-jinggao supervisor 1.70E+12 0 menu.faultRemark
164 2088 menu.fault.active 2129 1 active-alarm faultManage/active-alarm/index 1 1 M 1 1 faultManage:active-alarm:index icon-wenjian supervisor 1.70E+12 0 menu.fault.activemRemark
165 2089 menu.log 0 9 logManage 1 0 D 1 1 icon-fuzhidaima supervisor 1.70E+12 0 menu.logRemark
166 2090 menu.log.operatOld 2089 1 operation logManage/operation/index 1 0 M 0 0 logManage:operation:index icon-fuzhidaima supervisor 1.70E+12 0 menu.log.operatOldRemark
167 2091 menu.log.mml 2089 2 mml logManage/mml/index 1 1 M 1 1 logManage:mml:index icon-wocanyu supervisor 1.70E+12 0 menu.log.mmlRemark
168 2092 menu.log.alarm 2089 3 alarm-log logManage/alarm/index 1 1 M 1 1 logManage:alarm:index icon-fuzhidaima supervisor 1.70E+12 0 menu.log.alarmRemark
169 2093 menu.log.securityOld 2089 6 security-log logManage/security/index 1 0 M 0 0 logManage/security/index icon-gongnengjieshao supervisor 1.70E+12 0 menu.log.securityOldRemark
170 2094 menu.log.forwarding 2089 7 forwarding logManage/forwarding/index 1 0 M 1 1 logManage:forwarding:index icon-huizhiguize supervisor 1.70E+12 0 menu.log.forwardingRemark
171 2095 menu.log.set 2089 15 logSet logManage/logSet/index 1 0 M 1 1 logManage:logSet:index icon-you supervisor 1.70E+12 0 menu.log.setRemark
172 2096 menu.monitor.sessionUser 2 10 session monitor/session/index 1 0 M 0 0 monitor:session:index icon-gerenzhanghu supervisor 1.70E+12 0 menu.monitor.sessionUserRemark
173 2097 menu.fault.history 2129 2 history-alarm faultManage/history-alarm/index 1 1 M 1 1 faultManage/history-alarm/index icon-huizhiguize supervisor 1.70E+12 0 menu.fault.historyRemark
174 2098 menu.fault.set 2129 100 fault-setting faultManage/fault-setting/index 1 0 M 1 1 faultManage/fault-setting/index icon-gonggaodayi supervisor 1.70E+12 0 menu.fault.setRemark
175 2099 menu.perf 0 5 perfManage 1 0 D 1 1 icon-soutubiao supervisor 1.70E+12 0 menu.perfRemark
176 2100 menu.perf.task 2099 1 taskManage perfManage/taskManage/index 1 1 M 1 1 perfManage:taskManage:index icon-wofaqi supervisor 1.70E+12 0 menu.perf.taskRemark
177 2101 menu.perf.data 2099 2 perfData perfManage/perfData/index 1 1 M 1 1 perfManage:perfData:index icon-soutubiao supervisor 1.70E+12 0 menu.perf.dataRemark
178 2102 menu.perf.report 2099 3 perfReport perfManage/perfReport/index 1 0 M 0 0 perfManage:perfReport:index icon-gonggaodayi supervisor 1.70E+12 0 menu.perf.reportRemark
179 2103 menu.perf.threshold 2099 4 perfThreshold perfManage/perfThreshold/index 1 0 M 1 1 perfManage:perfThreshold:index icon-zhuanrang supervisor 1.70E+12 0 menu.perf.thresholdRemark
180 2104 menu.perf.kpi 2099 5 goldTarget perfManage/goldTarget/index 1 1 M 1 1 perfManage:goldTarget:index icon-soutubiao supervisor 1.70E+12 0 menu.perf.kpiRemark
181 2105 menu.perf.customTarget 2099 6 customTarget perfManage/customTarget/index 1 1 M 0 0 perfManage:customTarget:index icon-fanhui1 supervisor 1.70E+12 0 menu.perf.customTargetRemark
182 2106 menu.perf.set 2099 7 perfSet perfManage/perfSet/index 1 0 M 0 0 perfManage:perfSet:index icon-gonggao supervisor 1.70E+12 0 menu.perf.setRemark
183 2107 menu.mml 0 8 mmlManage 1 0 D 1 1 icon-zhizuoliucheng supervisor 1.70E+12 0 menu.mmlRemark
184 2108 menu.mml.ne 2107 1 neOperate mmlManage/neOperate/index 1 1 M 1 1 mmlManage:neOperate:index icon-huizhiguize supervisor 1.70E+12 0 menu.mml.neRemark
185 2109 menu.mml.udm 2107 2 udmOperate mmlManage/udmOperate/index 1 1 M 1 1 mmlManage:udmOperate:index icon-gonggaodayi supervisor 1.70E+12 0 menu.mml.udmRemark
186 2110 menu.mml.set 2107 4 mmlSet mmlManage/mmlSet/index 1 1 M 1 1 mmlManage:mmlSet:index icon-wofaqi supervisor 1.70E+12 0 menu.mml.setRemark
187 2111 menu.mml.omc 2107 3 omcOperate mmlManage/omcOperate/index 1 1 M 1 1 mmlManage:omcOperate:index icon-huizhiguize supervisor 1.70E+12 0 menu.mml.omcRemark
188 2112 menu.config.licenseManage 4 5 license configManage/license/index 1 1 M 1 1 configManage/license/index icon-shang supervisor 1.70E+12 0 menu.config.licenseManageRemark
189 2113 menu.security 0 14 security 1 0 D 1 1 icon-suofang supervisor 1.70E+12 0 menu.securityRemark
190 2114 menu.system.systemSet 1 12 setting system/setting/index 1 1 M 1 1 system:setting:index icon-piliang supervisor 1.70E+12 0 menu.system.systemSetRemark
191 2115 menu.system.systemResource 1 13 monitor monitor/monitor/index 1 1 M 1 1 monitor:monitor:info icon-soutubiao supervisor 1.70E+12 0 menu.system.systemResourceRemark
192 2116 menu.config.configNEForm 4 2 configParamForm configManage/configParamForm/index 1 0 M 1 1 configManage:configParam:index icon-wofaqi supervisor 1.70E+12 0 menu.config.configNEFormRemark
193 2117 menu.config.configNETree 4 2 configParamTree configManage/configParamTree/index 1 0 M 1 1 configManage:configParam:index icon-wofaqi supervisor 1.70E+12 0 menu.config.configNETreeRemark
194 2118 menu.config.configNETreeTable 4 2 configNETreeTable configManage/configParamTreeTable/index 1 0 M 1 1 configManage:configParam:index icon-wofaqi supervisor 1.70E+12 0 menu.config.configNETreeTableRemark
195 2119 menu.ueUser.n3iwf 5 8 n3iwf neUser/n3iwf/index 1 0 M 0 1 neUser:n3iwf:index icon-paixu supervisor 1.70E+12 0
196 2120 menu.ueUser.pcf 5 9 pcf neUser/pcf/index 1 0 M 1 1 neUser:pcf:index icon-paixu supervisor 1.70E+12 0
197 2121 menu.system.user.editRole 100 8 1 1 B 1 1 system:user:editRole # supervisor 1.70E+12 0
198 2122 menu.system.setting.i18n 2114 1 1 1 B 1 1 system:setting:i18n # supervisor 1.70E+12 supervisor 1.70E+12 menu.system.setting.i18nRemark
199 2123 menu.log.neFile 2089 9 neFile logManage/neFile/index 1 0 M 1 1 logManage:neFile:index icon-tubiaohuizhi supervisor 1.70E+12 0
200 2124 menu.neUser.nssf 5 10 nssf neUser/nssf/index 1 0 M 0 1 neUser:nssf:index icon-daimayingyong supervisor 1.70E+12 supervisor 1.70E+12
201 2125 menu.neUser.nssfAmf 5 11 nssfAmf neUser/nssfAmf/index 1 0 M 0 1 neUser:nssfAmf:index icon-paixu supervisor 1.70E+12 0
202 2126 menu.monitor.topology 2130 10 topology monitor/topology/index 1 0 M 1 1 monitor:topology:index icon-fangda supervisor 1.70E+12 0
203 2127 menu.monitor.topologyBuild 2130 30 topologyBuild monitor/topologyBuild/index 1 0 M 1 1 monitor:topologyBuild:index icon-fangda supervisor 1.70E+12 supervisor 1.70E+12
204 2128 menu.monitor.topologyArchitecture 2130 20 topologyArchitecture monitor/topologyArchitecture/index 1 0 M 1 1 monitor:topologyArchitecture:index icon-soutubiao supervisor 1.70E+12 supervisor 1.70E+12
205 2129 menu.alarm 2087 10 alarm 1 0 D 1 1 icon-jinggao supervisor 1.7048E+12 supervisor 1704847028995
206 2130 menu.topology 2087 20 topology 1 0 D 1 1 icon-anzhuo supervisor 1.7048E+12 supervisor 1704847055540
207 2131 menu.dashboard 2087 0 dashboard 1 0 D 1 1 icon-soutubiao supervisor 1.70555E+12 supervisor 1.70555E+12
208 2132 menu.dashboard.overview 2131 1 overview dashboard/overview/index 1 0 M 1 1 dashboard:overview:index icon-paixu supervisor 1.70555E+12 0
209 2133 menu.dashboard.cdr 2131 3 cdr dashboard/cdr/index 1 0 M 1 1 dashboard:cdr:index icon-paixu supervisor 1.70555E+12 0

View File

@@ -0,0 +1,5 @@
post_id,post_code,post_name,post_sort,status,create_by,create_time,update_by,update_time,remark
1,administator,post.admin,1,1,supervisor,1.69711E+12,,0,
2,operator,post.operator,2,1,supervisor,1.69711E+12,,0,
3,monitor,post.monitor,3,1,supervisor,1.69711E+12,,0,
4,visitor,post.visitor,4,1,supervisor,1.69711E+12,,0,
1 post_id post_code post_name post_sort status create_by create_time update_by update_time remark
2 1 administator post.admin 1 1 supervisor 1.69711E+12 0
3 2 operator post.operator 2 1 supervisor 1.69711E+12 0
4 3 monitor post.monitor 3 1 supervisor 1.69711E+12 0
5 4 visitor post.visitor 4 1 supervisor 1.69711E+12 0

View File

@@ -0,0 +1,6 @@
role_id,role_name,role_key,role_sort,data_scope,menu_check_strictly,dept_check_strictly,status,del_flag,create_by,create_time,update_by,update_time,remark
1,role.admin,supervisor,1,1,1,1,1,0,supervisor,1.69709E+12,,0,role.adminRemark
2,role.adminAssign,administrator,2,1,1,1,1,0,supervisor,1.69849E+12,,0,role.adminAssignRemark
3,role.operator,operator,3,1,1,1,1,0,supervisor,1.69849E+12,,0,role.operatorRemark
4,role.monitor,monitor,4,1,1,1,1,0,supervisor,1.69849E+12,,0,role.monitorRemark
5,role.vistor,vistor,5,1,1,1,1,0,supervisor,1.69849E+12,,0,role.vistorRemark
1 role_id role_name role_key role_sort data_scope menu_check_strictly dept_check_strictly status del_flag create_by create_time update_by update_time remark
2 1 role.admin supervisor 1 1 1 1 1 0 supervisor 1.69709E+12 0 role.adminRemark
3 2 role.adminAssign administrator 2 1 1 1 1 0 supervisor 1.69849E+12 0 role.adminAssignRemark
4 3 role.operator operator 3 1 1 1 1 0 supervisor 1.69849E+12 0 role.operatorRemark
5 4 role.monitor monitor 4 1 1 1 1 0 supervisor 1.69849E+12 0 role.monitorRemark
6 5 role.vistor vistor 5 1 1 1 1 0 supervisor 1.69849E+12 0 role.vistorRemark

View File

@@ -0,0 +1,37 @@
{
"id": 1,
"title": "故障管理",
"icon": "fa fa-telegram",
"href": "",
"target": null,
"parentId": 0,
"child": [
{
"id": 2,
"title": "活动告警",
"icon": "fa fa-caret-right",
"href": "page/alarm/alarmListDown.html",
"target": null,
"parentId": 1,
"child": null
},
{
"id": 3,
"title": "历史告警",
"icon": "fa fa-caret-right",
"href": "page/alarm/AlarmListHistory.html",
"target": null,
"parentId": 1,
"child": null
},
{
"id": 4,
"title": "告警设置",
"icon": "fa fa-caret-right",
"href": "absence/list.html",
"target": null,
"parentId": 1,
"child": null
}
]
}

View File

@@ -0,0 +1,46 @@
{
"id": 1,
"title": "日志管理",
"icon": "fa fa-home",
"href": null,
"target": null,
"parentId": 0,
"child": [
{
"id": 2,
"title": "操作日志",
"icon": "fa fa-caret-right",
"href": "building/list.html",
"target": null,
"parentId": 1,
"child": null
},
{
"id": 3,
"title": "安全日志",
"icon": "fa fa-caret-right",
"href": "dormitoryset/list.html",
"target": null,
"parentId": 1,
"child": null
},
{
"id": 4,
"title": "告警日志",
"icon": "fa fa-caret-right",
"href": "dormitoryset/list.html",
"target": null,
"parentId": 1,
"child": null
},
{
"id": 5,
"title": "日志设置",
"icon": "fa fa-caret-right",
"href": "dormitory/list.html",
"target": null,
"parentId": 1,
"child": null
}
]
}

View File

@@ -0,0 +1,28 @@
{
"id": 1,
"title": "操作维护",
"icon": "fa fa-home",
"href": null,
"target": null,
"parentId": 0,
"child": [
{
"id": 2,
"title": "参数配置MML",
"icon": "fa fa-caret-right",
"href": "building/list.html",
"target": null,
"parentId": 1,
"child": null
},
{
"id": 3,
"title": "用户管理MML",
"icon": "fa fa-caret-right",
"href": "dormitoryset/list.html",
"target": null,
"parentId": 1,
"child": null
}
]
}

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