Merge branch 'lichang' into lite
This commit is contained in:
17
build/database/lite/install/4a_log.sql
Normal file
17
build/database/lite/install/4a_log.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for 4a_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "4a_log";
|
||||
CREATE TABLE "4a_log" (
|
||||
"LogTime" text,
|
||||
"SubUser" text(32),
|
||||
"App" text(64),
|
||||
"Sip" text(32),
|
||||
"AppModule" text(32),
|
||||
"OpType" text(255),
|
||||
"OpText" text(255)
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of 4a_log
|
||||
-- ----------------------------
|
||||
57
build/database/lite/install/alarm.sql
Normal file
57
build/database/lite/install/alarm.sql
Normal file
@@ -0,0 +1,57 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for alarm
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "alarm";
|
||||
CREATE TABLE "alarm" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"ne_id" text(64) NOT NULL,
|
||||
"ne_name" text(32),
|
||||
"province" text(32),
|
||||
"pv_flag" text(10),
|
||||
"alarm_seq" integer(11),
|
||||
"alarm_id" text(32) NOT NULL,
|
||||
"alarm_title" text(255),
|
||||
"alarm_code" integer(11),
|
||||
"event_time" integer(20),
|
||||
"alarm_type" text(64),
|
||||
"orig_severity" text(10),
|
||||
"perceived_severity" text(10),
|
||||
"object_uid" text(64),
|
||||
"object_name" text(64),
|
||||
"object_type" text(20),
|
||||
"location_info" text(2048),
|
||||
"alarm_status" text(10),
|
||||
"specific_problem" text(255),
|
||||
"specific_problem_id" text(100),
|
||||
"add_info" text(2048),
|
||||
"ack_state" integer(11),
|
||||
"ack_time" integer(20),
|
||||
"ack_user" text(16),
|
||||
"clear_type" integer(11),
|
||||
"clear_time" integer(20),
|
||||
"clear_user" text(16),
|
||||
"timestamp" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table alarm
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_status_severity_time"
|
||||
ON "alarm" (
|
||||
"alarm_status" ASC,
|
||||
"orig_severity" ASC,
|
||||
"event_time" ASC
|
||||
);
|
||||
CREATE UNIQUE INDEX "uk_uni_aid_ne_aseq"
|
||||
ON "alarm" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC,
|
||||
"alarm_id" ASC,
|
||||
"alarm_seq" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of alarm
|
||||
-- ----------------------------
|
||||
47
build/database/lite/install/alarm_event.sql
Normal file
47
build/database/lite/install/alarm_event.sql
Normal file
@@ -0,0 +1,47 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for alarm_event
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "alarm_event";
|
||||
CREATE TABLE "alarm_event" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"ne_id" text(64) NOT NULL,
|
||||
"alarm_seq" integer(11),
|
||||
"alarm_id" text(32) NOT NULL,
|
||||
"alarm_title" text(255),
|
||||
"alarm_code" integer(11),
|
||||
"event_time" integer(20),
|
||||
"object_uid" text(64),
|
||||
"object_name" text(64),
|
||||
"object_type" text(20),
|
||||
"location_info" text(2048),
|
||||
"alarm_status" text(10),
|
||||
"specific_problem" text(255),
|
||||
"specific_problem_id" text(100),
|
||||
"add_info" text(2048),
|
||||
"clear_type" integer(11),
|
||||
"clear_time" integer(20),
|
||||
"clear_user" text(16),
|
||||
"timestamp" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table alarm_event
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_astatus_etime"
|
||||
ON "alarm_event" (
|
||||
"alarm_status" ASC,
|
||||
"event_time" ASC
|
||||
);
|
||||
CREATE UNIQUE INDEX "uk_ti_aid_aseq"
|
||||
ON "alarm_event" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC,
|
||||
"alarm_id" ASC,
|
||||
"alarm_seq" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of alarm_event
|
||||
-- ----------------------------
|
||||
26
build/database/lite/install/alarm_forward_log.sql
Normal file
26
build/database/lite/install/alarm_forward_log.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for alarm_forward_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "alarm_forward_log";
|
||||
CREATE TABLE "alarm_forward_log" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_id" text(64) NOT NULL,
|
||||
"alarm_seq" integer(11),
|
||||
"alarm_id" text(32),
|
||||
"alarm_code" integer(11),
|
||||
"alarm_title" text(255),
|
||||
"alarm_status" text(10),
|
||||
"alarm_type" text(10),
|
||||
"orig_severity" text(10),
|
||||
"event_time" integer(20),
|
||||
"created_at" integer(20),
|
||||
"type" text(255),
|
||||
"target" text(255),
|
||||
"result" text(255),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of alarm_forward_log
|
||||
-- ----------------------------
|
||||
23
build/database/lite/install/alarm_log.sql
Normal file
23
build/database/lite/install/alarm_log.sql
Normal file
@@ -0,0 +1,23 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for alarm_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "alarm_log";
|
||||
CREATE TABLE "alarm_log" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_id" text(64) NOT NULL,
|
||||
"alarm_seq" integer(11),
|
||||
"alarm_id" text(32),
|
||||
"alarm_code" integer(11),
|
||||
"alarm_title" text(255),
|
||||
"alarm_status" text(10),
|
||||
"alarm_type" text(10),
|
||||
"orig_severity" text(10),
|
||||
"event_time" integer(20),
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of alarm_log
|
||||
-- ----------------------------
|
||||
27
build/database/lite/install/alarm_relation.sql
Normal file
27
build/database/lite/install/alarm_relation.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for alarm_relation
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "alarm_relation";
|
||||
CREATE TABLE "alarm_relation" (
|
||||
"id" integer NOT NULL,
|
||||
"created_at" text(3),
|
||||
"updated_at" text(3),
|
||||
"deleted_at" text(3),
|
||||
"root_alarm_id" text(64),
|
||||
"alarm_id" text(64),
|
||||
"relation_type" text(64),
|
||||
"add_info" text(64),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table alarm_relation
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_alarm_relation_deleted_at"
|
||||
ON "alarm_relation" (
|
||||
"deleted_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of alarm_relation
|
||||
-- ----------------------------
|
||||
25
build/database/lite/install/alarm_subscribe.sql
Normal file
25
build/database/lite/install/alarm_subscribe.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for alarm_subscribe
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "alarm_subscribe";
|
||||
CREATE TABLE "alarm_subscribe" (
|
||||
"id" integer NOT NULL,
|
||||
"created_at" text(3),
|
||||
"updated_at" text(3),
|
||||
"deleted_at" text(3),
|
||||
"user" text(64),
|
||||
"callback_url" text(255),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table alarm_subscribe
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_alarm_subscribe_deleted_at"
|
||||
ON "alarm_subscribe" (
|
||||
"deleted_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of alarm_subscribe
|
||||
-- ----------------------------
|
||||
27
build/database/lite/install/cdr_event.sql
Normal file
27
build/database/lite/install/cdr_event.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for cdr_event
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "cdr_event";
|
||||
CREATE TABLE "cdr_event" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(32),
|
||||
"timestamp" integer(20),
|
||||
"cdr_json" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table cdr_event
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_uid_t"
|
||||
ON "cdr_event" (
|
||||
"rm_uid" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of cdr_event
|
||||
-- ----------------------------
|
||||
27
build/database/lite/install/cdr_event_ims.sql
Normal file
27
build/database/lite/install/cdr_event_ims.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for cdr_event_ims
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "cdr_event_ims";
|
||||
CREATE TABLE "cdr_event_ims" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(32),
|
||||
"timestamp" integer(20),
|
||||
"cdr_json" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table cdr_event_ims
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_ims_uid_t"
|
||||
ON "cdr_event_ims" (
|
||||
"rm_uid" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of cdr_event_ims
|
||||
-- ----------------------------
|
||||
27
build/database/lite/install/cdr_event_sgwc.sql
Normal file
27
build/database/lite/install/cdr_event_sgwc.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for cdr_event_sgwc
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "cdr_event_sgwc";
|
||||
CREATE TABLE "cdr_event_sgwc" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(32),
|
||||
"timestamp" integer(20),
|
||||
"cdr_json" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table cdr_event_sgwc
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_sgwc_uid_t"
|
||||
ON "cdr_event_sgwc" (
|
||||
"rm_uid" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of cdr_event_sgwc
|
||||
-- ----------------------------
|
||||
27
build/database/lite/install/cdr_event_smf.sql
Normal file
27
build/database/lite/install/cdr_event_smf.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for cdr_event_smf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "cdr_event_smf";
|
||||
CREATE TABLE "cdr_event_smf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(32),
|
||||
"timestamp" integer(20),
|
||||
"cdr_json" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table cdr_event_smf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_smf_uid_t"
|
||||
ON "cdr_event_smf" (
|
||||
"rm_uid" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of cdr_event_smf
|
||||
-- ----------------------------
|
||||
27
build/database/lite/install/cdr_event_smsc.sql
Normal file
27
build/database/lite/install/cdr_event_smsc.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for cdr_event_smsc
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "cdr_event_smsc";
|
||||
CREATE TABLE "cdr_event_smsc" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(32),
|
||||
"timestamp" integer(20),
|
||||
"cdr_json" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table cdr_event_smsc
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_smsc_uid_t"
|
||||
ON "cdr_event_smsc" (
|
||||
"rm_uid" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of cdr_event_smsc
|
||||
-- ----------------------------
|
||||
20
build/database/lite/install/cert_info.sql
Normal file
20
build/database/lite/install/cert_info.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for cert_info
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "cert_info";
|
||||
CREATE TABLE "cert_info" (
|
||||
"id" integer NOT NULL,
|
||||
"file_name" text(64),
|
||||
"key_length" integer(11),
|
||||
"key_algorithm" text(16),
|
||||
"cert_format" text(16),
|
||||
"cert_expiration" text(24),
|
||||
"created_at" text,
|
||||
"updated_at" text,
|
||||
"deleted_at" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of cert_info
|
||||
-- ----------------------------
|
||||
17
build/database/lite/install/event_log.sql
Normal file
17
build/database/lite/install/event_log.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for event_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "event_log";
|
||||
CREATE TABLE "event_log" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_id" text(32) NOT NULL,
|
||||
"event" text(255) NOT NULL,
|
||||
"event_time" text,
|
||||
"log_time" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of event_log
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_c_report.sql
Normal file
31
build/database/lite/install/kpi_c_report.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_c_report
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_c_report";
|
||||
CREATE TABLE "kpi_c_report" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_c_report
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_c_uid_at"
|
||||
ON "kpi_c_report" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_c_report
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_c_report_amf.sql
Normal file
31
build/database/lite/install/kpi_c_report_amf.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_c_report_amf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_c_report_amf";
|
||||
CREATE TABLE "kpi_c_report_amf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_c_report_amf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_c_amf_uid_at"
|
||||
ON "kpi_c_report_amf" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_c_report_amf
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_c_report_ims.sql
Normal file
31
build/database/lite/install/kpi_c_report_ims.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_c_report_ims
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_c_report_ims";
|
||||
CREATE TABLE "kpi_c_report_ims" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_c_report_ims
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_c_ims_uid_at"
|
||||
ON "kpi_c_report_ims" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_c_report_ims
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_c_report_mme.sql
Normal file
31
build/database/lite/install/kpi_c_report_mme.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_c_report_mme
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_c_report_mme";
|
||||
CREATE TABLE "kpi_c_report_mme" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_c_report_mme
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_c_mme_uid_at"
|
||||
ON "kpi_c_report_mme" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_c_report_mme
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_c_report_smf.sql
Normal file
31
build/database/lite/install/kpi_c_report_smf.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_c_report_smf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_c_report_smf";
|
||||
CREATE TABLE "kpi_c_report_smf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_c_report_smf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_c_smf_uid_at"
|
||||
ON "kpi_c_report_smf" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_c_report_smf
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_c_report_udm.sql
Normal file
31
build/database/lite/install/kpi_c_report_udm.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_c_report_udm
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_c_report_udm";
|
||||
CREATE TABLE "kpi_c_report_udm" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_c_report_udm
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_c_udm_uid_at"
|
||||
ON "kpi_c_report_udm" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_c_report_udm
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_c_report_upf.sql
Normal file
31
build/database/lite/install/kpi_c_report_upf.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_c_report_upf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_c_report_upf";
|
||||
CREATE TABLE "kpi_c_report_upf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_c_report_upf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_c_upf_uid_at"
|
||||
ON "kpi_c_report_upf" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_c_report_upf
|
||||
-- ----------------------------
|
||||
51
build/database/lite/install/kpi_c_title.sql
Normal file
51
build/database/lite/install/kpi_c_title.sql
Normal file
@@ -0,0 +1,51 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_c_title
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_c_title";
|
||||
CREATE TABLE "kpi_c_title" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"kpi_id" text(16),
|
||||
"title" text(255),
|
||||
"expression" text(1024),
|
||||
"unit" text(16),
|
||||
"description" text(255),
|
||||
"status" text(16),
|
||||
"created_by" text(32),
|
||||
"updated_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_c_title
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "idx_ne_kpi_id"
|
||||
ON "kpi_c_title" (
|
||||
"ne_type" ASC,
|
||||
"kpi_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_c_title
|
||||
-- ----------------------------
|
||||
INSERT INTO "kpi_c_title" VALUES (1, 'AMF', 'AMF.C.01', 'Regstration Success Rate', '(''AMF.03''/''AMF.02'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (2, 'AMF', 'AMF.C.02', 'Paging Success Rate', '((''AMF.15''+''AMF.16'')/''AMF.17'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (3, 'AMF', 'AMF.C.03', 'Service Request Success Rate', '(1-''AMF.18''/''AMF.19'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (4, 'AMF', 'AMF.C.04', '5G Register Subscriber', '''AMF.01''', ' ', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (5, 'SMF', 'SMF.C.01', 'SA_MeanPduSession', '''SMF.01''', ' ', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (6, 'SMF', 'SMF.C.02', 'PDU Session Establishment Success Rate', '(''SMF.02''/''SMF.03'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (7, 'SMF', 'SMF.C.03', 'IMS Session Establishment Success Rate', '(''SMF.04''/''SMF.05'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (8, 'MME', 'MME.C.01', 'Attach Success Rate ', '(''MME.A.02''/''MME.A.01'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (9, 'UPF', 'UPF.C.01', 'PFCP Establish Success Rate ', '(''UPF.01''/''UPF.02'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (10, 'UPF', 'UPF.C.02', 'N6_Uplink_Throughout', '(''UPF.03'')*8/5/1000/1000', 'Mbps', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (11, 'UPF', 'UPF.C.03', 'N3_Uplink_Throughout', '(''UPF.06'')*8/5/1000/1000', 'Mbps', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (12, 'UDM', 'UDM.C.01', 'AMF_UECM_Success_Rate ', '(''UDM.03''/''UDM.02'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (13, 'UDM', 'UDM.C.02', 'SMF_UECM_Success_Rate ', '(''UDM.04''/''UDM.05'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (14, 'IMS', 'IMS.C.01', 'InitReg_Success_Rate', '(''SCSCF.03''/''SCSCF.04'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (15, 'IMS', 'IMS.C.02', 'MO_Success_Rate', '(''SCSCF.05''/''SCSCF.06'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (16, 'IMS', 'IMS.C.03', 'MT_Success_Rate', '(''SCSCF.07''/''SCSCF.08'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (17, 'IMS', 'IMS.C.04', 'Service_Success_Rate ', '((''SCSCF.05''+''SCSCF.07'')/(''SCSCF.06''+''SCSCF.08''))*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (18, 'SMF', 'SMF.C.06', 'IMS_DefaultBear_Success_Rate ', '(''SMF.13''/''SMF.14'')*100', '%', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (19, 'SMF', 'SMF.C.07', 'Bear_Success_Rate_new', '((''SMF.09''+''SMF.11'')/(''SMF.10''+''SMF.12'') )*100', '%', '', '2', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (22, 'UPF', 'UPF.C.06', 'N3_Downlink_Throughout', '(''UPF.05'')*8/5/1000/1000', 'Mbps', '', '1', 'admin', 1739362260083);
|
||||
INSERT INTO "kpi_c_title" VALUES (23, 'UPF', 'UPF.C.07', 'N6_Downlink_Throughout', '(''UPF.04'')*8/5/1000/1000', 'Mbps', '', '1', 'admin', 1739362260083);
|
||||
31
build/database/lite/install/kpi_report.sql
Normal file
31
build/database/lite/install/kpi_report.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report";
|
||||
CREATE TABLE "kpi_report" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_uid_at"
|
||||
ON "kpi_report" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_amf.sql
Normal file
31
build/database/lite/install/kpi_report_amf.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_amf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_amf";
|
||||
CREATE TABLE "kpi_report_amf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_amf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_amf_uid_at"
|
||||
ON "kpi_report_amf" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_amf
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_ausf.sql
Normal file
31
build/database/lite/install/kpi_report_ausf.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_ausf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_ausf";
|
||||
CREATE TABLE "kpi_report_ausf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_ausf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_ausf_uid_at"
|
||||
ON "kpi_report_ausf" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_ausf
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_cbc.sql
Normal file
31
build/database/lite/install/kpi_report_cbc.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_cbc
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_cbc";
|
||||
CREATE TABLE "kpi_report_cbc" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_cbc
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_cbc_uid_at"
|
||||
ON "kpi_report_cbc" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_cbc
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_hlr.sql
Normal file
31
build/database/lite/install/kpi_report_hlr.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_hlr
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_hlr";
|
||||
CREATE TABLE "kpi_report_hlr" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_hlr
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_hlr_uid_at"
|
||||
ON "kpi_report_hlr" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_hlr
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_ims.sql
Normal file
31
build/database/lite/install/kpi_report_ims.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_ims
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_ims";
|
||||
CREATE TABLE "kpi_report_ims" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_ims
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_ims_uid_at"
|
||||
ON "kpi_report_ims" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_ims
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_mme.sql
Normal file
31
build/database/lite/install/kpi_report_mme.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_mme
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_mme";
|
||||
CREATE TABLE "kpi_report_mme" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_mme
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_mme_uid_at"
|
||||
ON "kpi_report_mme" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_mme
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_mocngw.sql
Normal file
31
build/database/lite/install/kpi_report_mocngw.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_mocngw
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_mocngw";
|
||||
CREATE TABLE "kpi_report_mocngw" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_mocngw
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_mocngw_uid_at"
|
||||
ON "kpi_report_mocngw" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_mocngw
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_nssf.sql
Normal file
31
build/database/lite/install/kpi_report_nssf.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_nssf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_nssf";
|
||||
CREATE TABLE "kpi_report_nssf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_nssf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_nssf_uid_at"
|
||||
ON "kpi_report_nssf" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_nssf
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_pcf.sql
Normal file
31
build/database/lite/install/kpi_report_pcf.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_pcf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_pcf";
|
||||
CREATE TABLE "kpi_report_pcf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_pcf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_pcf_uid_at"
|
||||
ON "kpi_report_pcf" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_pcf
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_smf.sql
Normal file
31
build/database/lite/install/kpi_report_smf.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_smf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_smf";
|
||||
CREATE TABLE "kpi_report_smf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_smf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_smf_uid_at"
|
||||
ON "kpi_report_smf" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_smf
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_smsc.sql
Normal file
31
build/database/lite/install/kpi_report_smsc.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_smsc
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_smsc";
|
||||
CREATE TABLE "kpi_report_smsc" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_smsc
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_smsc_uid_at"
|
||||
ON "kpi_report_smsc" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_smsc
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_udm.sql
Normal file
31
build/database/lite/install/kpi_report_udm.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_udm
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_udm";
|
||||
CREATE TABLE "kpi_report_udm" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_udm
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_udm_uid_at"
|
||||
ON "kpi_report_udm" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_udm
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/kpi_report_upf.sql
Normal file
31
build/database/lite/install/kpi_report_upf.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_upf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_upf";
|
||||
CREATE TABLE "kpi_report_upf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_upf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_upf_uid_at"
|
||||
ON "kpi_report_upf" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_upf
|
||||
-- ----------------------------
|
||||
25
build/database/lite/install/measure_data.sql
Normal file
25
build/database/lite/install/measure_data.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for measure_data
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "measure_data";
|
||||
CREATE TABLE "measure_data" (
|
||||
"id" integer NOT NULL,
|
||||
"date" text,
|
||||
"task_id" integer(11),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"ne_type" text(16),
|
||||
"granul_option" text(255),
|
||||
"kpi_code" text(32),
|
||||
"kpi_id" text(64),
|
||||
"kpi_ext" text(32),
|
||||
"start_time" text,
|
||||
"end_time" text,
|
||||
"value" integer(20),
|
||||
"timestamp" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of measure_data
|
||||
-- ----------------------------
|
||||
26
build/database/lite/install/measure_task.sql
Normal file
26
build/database/lite/install/measure_task.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for measure_task
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "measure_task";
|
||||
CREATE TABLE "measure_task" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_ids" text,
|
||||
"kpi_set" text,
|
||||
"start_time" text(32),
|
||||
"end_time" text(32),
|
||||
"periods" text,
|
||||
"schedule" text,
|
||||
"granul_option" text(255) NOT NULL,
|
||||
"status" text(255) NOT NULL,
|
||||
"account_id" text(32),
|
||||
"comment" text(255),
|
||||
"create_time" text,
|
||||
"update_time" text,
|
||||
"delete_time" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of measure_task
|
||||
-- ----------------------------
|
||||
20
build/database/lite/install/measure_threshold.sql
Normal file
20
build/database/lite/install/measure_threshold.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for measure_threshold
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "measure_threshold";
|
||||
CREATE TABLE "measure_threshold" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"kpi_set" text(1024),
|
||||
"threshold" integer(20),
|
||||
"status" text(255),
|
||||
"orig_severity" text(255),
|
||||
"alarm_code" text(16),
|
||||
"alarm_flag" integer(4),
|
||||
"create_time" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of measure_threshold
|
||||
-- ----------------------------
|
||||
19
build/database/lite/install/mml_log.sql
Normal file
19
build/database/lite/install/mml_log.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for mml_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "mml_log";
|
||||
CREATE TABLE "mml_log" (
|
||||
"id" integer NOT NULL,
|
||||
"user" text(32),
|
||||
"ip" text(64),
|
||||
"ne_type" text(32),
|
||||
"ne_id" text(32),
|
||||
"mml" text(1024),
|
||||
"result" text(2048),
|
||||
"log_time" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of mml_log
|
||||
-- ----------------------------
|
||||
21
build/database/lite/install/monitor_base.sql
Normal file
21
build/database/lite/install/monitor_base.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for monitor_base
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "monitor_base";
|
||||
CREATE TABLE "monitor_base" (
|
||||
"id" integer NOT NULL,
|
||||
"create_time" integer(20),
|
||||
"cpu" integer,
|
||||
"load_usage" integer,
|
||||
"cpu_load1" integer,
|
||||
"cpu_load5" integer,
|
||||
"cpu_load15" integer,
|
||||
"memory" integer,
|
||||
"ne_type" text(32),
|
||||
"ne_id" text(32),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of monitor_base
|
||||
-- ----------------------------
|
||||
20
build/database/lite/install/monitor_io.sql
Normal file
20
build/database/lite/install/monitor_io.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for monitor_io
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "monitor_io";
|
||||
CREATE TABLE "monitor_io" (
|
||||
"id" integer NOT NULL,
|
||||
"create_time" integer(20),
|
||||
"name" text(50) NOT NULL,
|
||||
"read" integer(11),
|
||||
"write" integer(11),
|
||||
"count" integer(11),
|
||||
"time" integer(11),
|
||||
"ne_type" text(32),
|
||||
"ne_id" text(32),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of monitor_io
|
||||
-- ----------------------------
|
||||
18
build/database/lite/install/monitor_network.sql
Normal file
18
build/database/lite/install/monitor_network.sql
Normal file
@@ -0,0 +1,18 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for monitor_network
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "monitor_network";
|
||||
CREATE TABLE "monitor_network" (
|
||||
"id" integer NOT NULL,
|
||||
"create_time" integer(20),
|
||||
"name" text(50) NOT NULL,
|
||||
"up" integer,
|
||||
"down" integer,
|
||||
"ne_type" text(32),
|
||||
"ne_id" text(32),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of monitor_network
|
||||
-- ----------------------------
|
||||
33
build/database/lite/install/nb_state.sql
Normal file
33
build/database/lite/install/nb_state.sql
Normal file
@@ -0,0 +1,33 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for nb_state
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "nb_state";
|
||||
CREATE TABLE "nb_state" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"ne_id" text(32) NOT NULL,
|
||||
"rm_uid" text(128),
|
||||
"create_time" integer(20),
|
||||
"address" text(255),
|
||||
"name" text(64),
|
||||
"position" text(64),
|
||||
"nb_name" text(128),
|
||||
"state" text(12),
|
||||
"time" text(64),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table nb_state
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_state_type_id_uid_cat"
|
||||
ON "nb_state" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC,
|
||||
"rm_uid" ASC,
|
||||
"create_time" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of nb_state
|
||||
-- ----------------------------
|
||||
23
build/database/lite/install/nbi_alarm_log.sql
Normal file
23
build/database/lite/install/nbi_alarm_log.sql
Normal file
@@ -0,0 +1,23 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for nbi_alarm_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "nbi_alarm_log";
|
||||
CREATE TABLE "nbi_alarm_log" (
|
||||
"id" integer NOT NULL,
|
||||
"op_user" text(16),
|
||||
"src_ip" text(64) NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_id" text(32),
|
||||
"alarm_seq" integer(11) NOT NULL,
|
||||
"alarm_id" text(32),
|
||||
"alarm_code" integer(11),
|
||||
"alarm_status" integer(11),
|
||||
"event_time" text(32),
|
||||
"log_time" text NOT NULL,
|
||||
"a_id" integer(11) NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of nbi_alarm_log
|
||||
-- ----------------------------
|
||||
26
build/database/lite/install/nbi_cm.sql
Normal file
26
build/database/lite/install/nbi_cm.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for nbi_cm
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "nbi_cm";
|
||||
CREATE TABLE "nbi_cm" (
|
||||
"id" integer NOT NULL,
|
||||
"timestamp" text,
|
||||
"time_zone" text(10),
|
||||
"vendor_name" text(65),
|
||||
"ne_type" text(16),
|
||||
"cm_version" text(32),
|
||||
"rm_uid" text(32),
|
||||
"ne_id" text(32),
|
||||
"user_label" text(64),
|
||||
"object_type" text(32),
|
||||
"pv_flag" text(255),
|
||||
"vm_id" text(128),
|
||||
"vnf_instance_id" text(64),
|
||||
"value_json" text,
|
||||
"status" text(255) NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of nbi_cm
|
||||
-- ----------------------------
|
||||
37
build/database/lite/install/nbi_operation_log.sql
Normal file
37
build/database/lite/install/nbi_operation_log.sql
Normal file
@@ -0,0 +1,37 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for nbi_operation_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "nbi_operation_log";
|
||||
CREATE TABLE "nbi_operation_log" (
|
||||
"id" integer NOT NULL,
|
||||
"src_ip" text(64),
|
||||
"op_user" text(32),
|
||||
"dst_ip" text(64),
|
||||
"op_type" text(32),
|
||||
"op_proto" text(32),
|
||||
"op_params" text(255),
|
||||
"op_result" text(64),
|
||||
"op_time" text,
|
||||
"log_time" text,
|
||||
"created_at" text,
|
||||
"pri" text,
|
||||
"vendor" text,
|
||||
"ne_name" text,
|
||||
"rm_uid" text,
|
||||
"ne_type" text,
|
||||
"log_type" text,
|
||||
"user_name" text,
|
||||
"terminal_ip" text,
|
||||
"start_time" text,
|
||||
"end_time" text,
|
||||
"oper_type" text,
|
||||
"risk_level" text,
|
||||
"oper_content" text,
|
||||
"oper_result" text,
|
||||
"failure_cause" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of nbi_operation_log
|
||||
-- ----------------------------
|
||||
24
build/database/lite/install/nbi_pm.sql
Normal file
24
build/database/lite/install/nbi_pm.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for nbi_pm
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "nbi_pm";
|
||||
CREATE TABLE "nbi_pm" (
|
||||
"id" integer NOT NULL,
|
||||
"date" text,
|
||||
"index" integer(11),
|
||||
"start_time" text,
|
||||
"time_zone" text(16),
|
||||
"ne_name" text(64),
|
||||
"pm_version" text(16),
|
||||
"period" text(6),
|
||||
"rm_uid" text(64),
|
||||
"ne_type" text(16),
|
||||
"dn" text(255),
|
||||
"datas" text,
|
||||
"timestamp" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of nbi_pm
|
||||
-- ----------------------------
|
||||
24
build/database/lite/install/nbi_secure_log.sql
Normal file
24
build/database/lite/install/nbi_secure_log.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for nbi_secure_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "nbi_secure_log";
|
||||
CREATE TABLE "nbi_secure_log" (
|
||||
"id" integer NOT NULL,
|
||||
"created_at" text(3),
|
||||
"pri" text,
|
||||
"vendor" text,
|
||||
"ne_name" text,
|
||||
"rm_uid" text,
|
||||
"ne_type" text,
|
||||
"log_type" text,
|
||||
"event_name" text,
|
||||
"start_time" text,
|
||||
"user_name" text,
|
||||
"terminal_ip" text,
|
||||
"oper_result" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of nbi_secure_log
|
||||
-- ----------------------------
|
||||
16
build/database/lite/install/ne_check.sql
Normal file
16
build/database/lite/install/ne_check.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_check
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_check";
|
||||
CREATE TABLE "ne_check" (
|
||||
"id" integer(10) NOT NULL,
|
||||
"status" integer(4),
|
||||
"result" text(64),
|
||||
"create_time" text,
|
||||
"ne_type" text(32),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_check
|
||||
-- ----------------------------
|
||||
30
build/database/lite/install/ne_config_backup.sql
Normal file
30
build/database/lite/install/ne_config_backup.sql
Normal file
@@ -0,0 +1,30 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_config_backup
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_config_backup";
|
||||
CREATE TABLE "ne_config_backup" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"ne_id" text(32) NOT NULL,
|
||||
"name" text(128),
|
||||
"path" text(255),
|
||||
"remark" text(400),
|
||||
"create_by" text(50),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_config_backup
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_cb_type_id"
|
||||
ON "ne_config_backup" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_config_backup
|
||||
-- ----------------------------
|
||||
56
build/database/lite/install/ne_host.sql
Normal file
56
build/database/lite/install/ne_host.sql
Normal file
@@ -0,0 +1,56 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_host
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_host";
|
||||
CREATE TABLE "ne_host" (
|
||||
"id" integer NOT NULL,
|
||||
"host_type" text(16),
|
||||
"group_id" text(1),
|
||||
"title" text(128),
|
||||
"addr" text(128),
|
||||
"port" integer(11),
|
||||
"user" text(50),
|
||||
"auth_mode" text(1),
|
||||
"password" text(2000),
|
||||
"private_key" text(6000),
|
||||
"pass_phrase" text(2000),
|
||||
"db_name" text(50),
|
||||
"remark" text(500),
|
||||
"create_by" text(50),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_host
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_type_group_title"
|
||||
ON "ne_host" (
|
||||
"host_type" ASC,
|
||||
"group_id" ASC,
|
||||
"title" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_host
|
||||
-- ----------------------------
|
||||
INSERT INTO "ne_host" VALUES (1, 'ssh', '1', 'OMC_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (2, 'telnet', '1', 'OMC_001_4100', '127.0.0.10', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (3, 'ssh', '1', 'IMS_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (4, 'telnet', '1', 'IMS_001_4100', '127.0.0.1', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (5, 'ssh', '1', 'AMF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (6, 'telnet', '1', 'AMF_001_4100', '127.0.0.9', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (7, 'ssh', '1', 'AUSF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (8, 'telnet', '1', 'AUSF_001_4100', '127.0.0.4', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (9, 'ssh', '1', 'UDM_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (10, 'telnet', '1', 'UDM_001_4100', '127.0.0.5', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (11, 'redis', '1', 'UDM_001_6379', '127.0.0.1', 6379, 'udmdb', '0', 'nO3fEhtuKuBkQE5ozsUhNfzn02vhnyxYTEiPn2CIlr4=', '', '', '0', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (12, 'ssh', '1', 'SMF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (13, 'telnet', '1', 'SMF_001_4100', '127.0.0.6', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (14, 'ssh', '1', 'PCF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (15, 'telnet', '1', 'PCF_001_4100', '127.0.0.7', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (20, 'ssh', '1', 'UPF_001_27149', '127.0.0.1', 27149, 'new_user', '0', 't7sKsIsdh7dXKs0ErZRtGIZGRIjrFz6tJGfZGJS2h6E=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (21, 'telnet', '1', 'UPF_001_4100', '127.0.0.8', 4100, 'admin', '0', 'NUBonCin4GZgl7o12YjeClE8ToQmYp9KWdhMjSNxc2M=', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_host" VALUES (22, 'telnet', '1', 'UPF_001_5002', '127.0.0.8', 5002, 'admin', '0', '', '', '', '', '', 'system', 1729063407329, '', 0);
|
||||
31
build/database/lite/install/ne_host_cmd.sql
Normal file
31
build/database/lite/install/ne_host_cmd.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_host_cmd
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_host_cmd";
|
||||
CREATE TABLE "ne_host_cmd" (
|
||||
"id" integer NOT NULL,
|
||||
"cmd_type" text(16),
|
||||
"group_id" text(2),
|
||||
"title" text(50),
|
||||
"command" text(500),
|
||||
"remark" text(500),
|
||||
"create_by" text(50),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_host_cmd
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_host_type_group_title"
|
||||
ON "ne_host_cmd" (
|
||||
"cmd_type" ASC,
|
||||
"group_id" ASC,
|
||||
"title" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_host_cmd
|
||||
-- ----------------------------
|
||||
47
build/database/lite/install/ne_info.sql
Normal file
47
build/database/lite/install/ne_info.sql
Normal file
@@ -0,0 +1,47 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_info
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_info";
|
||||
CREATE TABLE "ne_info" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"ne_id" text(32) NOT NULL,
|
||||
"rm_uid" text(40),
|
||||
"ne_name" text(64),
|
||||
"ip" text(128),
|
||||
"port" integer(11),
|
||||
"pv_flag" text(32),
|
||||
"province" text(32),
|
||||
"vendor_name" text(64),
|
||||
"dn" text(255),
|
||||
"ne_address" text(64),
|
||||
"host_ids" text(64),
|
||||
"status" integer(11),
|
||||
"remark" text(255),
|
||||
"create_by" text(50),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_info
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "ux_netype_neid"
|
||||
ON "ne_info" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_info
|
||||
-- ----------------------------
|
||||
INSERT INTO "ne_info" VALUES (1, 'OMC', '001', '4400HXOMC001', 'OMC_001', '127.0.0.10', 33080, 'PNF', 'AreaNet', '-', '-', '-', '1,2', 0, '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_info" VALUES (2, 'IMS', '001', '4400HXIMS001', 'IMS_001', '127.0.0.1', 33030, 'PNF', 'AreaNet', '-', '-', '-', '3,4', 0, '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_info" VALUES (3, 'AMF', '001', '4400HXAMF001', 'AMF_001', '127.0.0.9', 33030, 'PNF', 'AreaNet', '-', '-', '', '5,6', 0, '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_info" VALUES (4, 'AUSF', '001', '4400HXAUSF001', 'AUSF_001', '127.0.0.4', 33030, 'PNF', 'AreaNet', '-', '-', '', '7,8', 0, '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_info" VALUES (5, 'UDM', '001', '4400HXUDM001', 'UDM_001', '127.0.0.5', 33030, 'PNF', 'AreaNet', '-', '-', '-', '9,10,11', 0, '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_info" VALUES (6, 'SMF', '001', '4400HXSMF001', 'SMF_001', '127.0.0.6', 33030, 'PNF', 'AreaNet', '-', '-', '-', '12,13', 0, '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_info" VALUES (7, 'PCF', '001', '4400HXPCF001', 'PCF_001', '127.0.0.7', 33030, 'PNF', 'AreaNet', '-', '-', '-', '14,15', 0, '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_info" VALUES (10, 'UPF', '001', '4400HXUPF001', 'UPF_001', '127.0.0.8', 33030, 'PNF', 'AreaNet', '-', '-', '', '20,21,22', 0, '', 'system', 1713928436971, '', 0);
|
||||
41
build/database/lite/install/ne_license.sql
Normal file
41
build/database/lite/install/ne_license.sql
Normal file
@@ -0,0 +1,41 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_license
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_license";
|
||||
CREATE TABLE "ne_license" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"ne_id" text(32) NOT NULL,
|
||||
"activation_request_code" text(255) NOT NULL,
|
||||
"license_path" text(255),
|
||||
"serial_num" text(32),
|
||||
"expiry_date" text(32),
|
||||
"status" text(32),
|
||||
"remark" text(255),
|
||||
"create_by" text(50),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_license
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_lic_type_id"
|
||||
ON "ne_license" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_license
|
||||
-- ----------------------------
|
||||
INSERT INTO "ne_license" VALUES (1, 'OMC', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_license" VALUES (2, 'IMS', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_license" VALUES (3, 'AMF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_license" VALUES (4, 'AUSF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_license" VALUES (5, 'UDM', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_license" VALUES (6, 'SMF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_license" VALUES (7, 'PCF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
|
||||
INSERT INTO "ne_license" VALUES (10, 'UPF', '001', '', '', '', '', '0', '', 'system', 1713928436971, '', 0);
|
||||
29
build/database/lite/install/ne_link.sql
Normal file
29
build/database/lite/install/ne_link.sql
Normal file
@@ -0,0 +1,29 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_link
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_link";
|
||||
CREATE TABLE "ne_link" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"ne_id" text(32) NOT NULL,
|
||||
"rm_uid" text(40),
|
||||
"interface" text(16),
|
||||
"status" text(255),
|
||||
"created_at" text,
|
||||
"updated_at" text,
|
||||
"deleted_at" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_link
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "idx_netype_neid"
|
||||
ON "ne_link" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_link
|
||||
-- ----------------------------
|
||||
18
build/database/lite/install/ne_pool.sql
Normal file
18
build/database/lite/install/ne_pool.sql
Normal file
@@ -0,0 +1,18 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_pool
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_pool";
|
||||
CREATE TABLE "ne_pool" (
|
||||
"id" integer NOT NULL,
|
||||
"name" text(255),
|
||||
"ne_type" text(50) NOT NULL,
|
||||
"ne_id" text(50) NOT NULL,
|
||||
"rm_uid" text(50),
|
||||
"balance" integer(11),
|
||||
"update_time" text,
|
||||
PRIMARY KEY ("id", "ne_type", "ne_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_pool
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/ne_software.sql
Normal file
31
build/database/lite/install/ne_software.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_software
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_software";
|
||||
CREATE TABLE "ne_software" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"name" text(128) NOT NULL,
|
||||
"path" text(500),
|
||||
"version" text(64) NOT NULL,
|
||||
"description" text(500),
|
||||
"create_by" text(50),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_software
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_type_name_version"
|
||||
ON "ne_software" (
|
||||
"ne_type" ASC,
|
||||
"name" ASC,
|
||||
"version" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_software
|
||||
-- ----------------------------
|
||||
32
build/database/lite/install/ne_state.sql
Normal file
32
build/database/lite/install/ne_state.sql
Normal file
@@ -0,0 +1,32 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_state
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_state";
|
||||
CREATE TABLE "ne_state" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_id" text(32),
|
||||
"version" text(16),
|
||||
"capability" text(64),
|
||||
"serial_num" text(16),
|
||||
"expiry_date" text(10),
|
||||
"cpu_usage" text,
|
||||
"mem_usage" text,
|
||||
"disk_space" text,
|
||||
"timestamp" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_state
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_type_id_time"
|
||||
ON "ne_state" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_state
|
||||
-- ----------------------------
|
||||
45
build/database/lite/install/ne_version.sql
Normal file
45
build/database/lite/install/ne_version.sql
Normal file
@@ -0,0 +1,45 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_version
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_version";
|
||||
CREATE TABLE "ne_version" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"ne_id" text(32) NOT NULL,
|
||||
"name" text(128),
|
||||
"version" text(64),
|
||||
"path" text(255),
|
||||
"pre_name" text(128),
|
||||
"pre_version" text(64),
|
||||
"pre_path" text(255),
|
||||
"new_name" text(128),
|
||||
"new_version" text(64),
|
||||
"new_path" text(255),
|
||||
"status" text(16),
|
||||
"create_by" text(50),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_version
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_ver_type_id"
|
||||
ON "ne_version" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_version
|
||||
-- ----------------------------
|
||||
INSERT INTO "ne_version" VALUES (1, 'OMC', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (2, 'IMS', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (3, 'AMF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (4, 'AUSF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (5, 'UDM', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (6, 'SMF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (7, 'PCF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (10, 'UPF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
26
build/database/lite/install/northbound_cm.sql
Normal file
26
build/database/lite/install/northbound_cm.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for northbound_cm
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "northbound_cm";
|
||||
CREATE TABLE "northbound_cm" (
|
||||
"id" integer NOT NULL,
|
||||
"timestamp" text,
|
||||
"time_zone" text(10),
|
||||
"vendor_name" text(65),
|
||||
"ne_type" text(16),
|
||||
"cm_version" text(32),
|
||||
"rm_uid" text(32),
|
||||
"ne_id" text(32),
|
||||
"user_label" text(64),
|
||||
"object_type" text(32),
|
||||
"pv_flag" text(255),
|
||||
"vm_id" text(128),
|
||||
"vnf_instance_id" text(64),
|
||||
"value_json" text,
|
||||
"status" text(255) NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of northbound_cm
|
||||
-- ----------------------------
|
||||
24
build/database/lite/install/northbound_pm.sql
Normal file
24
build/database/lite/install/northbound_pm.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for northbound_pm
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "northbound_pm";
|
||||
CREATE TABLE "northbound_pm" (
|
||||
"id" integer NOT NULL,
|
||||
"date" text,
|
||||
"index" integer(11),
|
||||
"start_time" text,
|
||||
"time_zone" text(16),
|
||||
"ne_name" text(64),
|
||||
"pm_version" text(16),
|
||||
"period" text(6),
|
||||
"rm_uid" text(64),
|
||||
"ne_type" text(16),
|
||||
"dn" text(255),
|
||||
"datas" text,
|
||||
"timestamp" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of northbound_pm
|
||||
-- ----------------------------
|
||||
24
build/database/lite/install/oauth2_client.sql
Normal file
24
build/database/lite/install/oauth2_client.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for oauth2_client
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "oauth2_client";
|
||||
CREATE TABLE "oauth2_client" (
|
||||
"id" integer NOT NULL,
|
||||
"client_id" text(32) NOT NULL,
|
||||
"client_secret" text(64) NOT NULL,
|
||||
"title" text(64),
|
||||
"ip_white" text(255),
|
||||
"del_flag" text(1),
|
||||
"login_ip" text(128),
|
||||
"login_time" integer,
|
||||
"create_by" text(64),
|
||||
"create_time" integer,
|
||||
"update_by" text(64),
|
||||
"update_time" integer,
|
||||
"remark" text(200),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of oauth2_client
|
||||
-- ----------------------------
|
||||
20
build/database/lite/install/oauth2_log_login.sql
Normal file
20
build/database/lite/install/oauth2_log_login.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for oauth2_log_login
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "oauth2_log_login";
|
||||
CREATE TABLE "oauth2_log_login" (
|
||||
"id" integer NOT NULL,
|
||||
"client_id" text(32),
|
||||
"login_ip" text(128),
|
||||
"login_location" text(32),
|
||||
"browser" text(64),
|
||||
"os" text(64),
|
||||
"status_flag" text(1),
|
||||
"msg" text(255),
|
||||
"login_time" integer,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of oauth2_log_login
|
||||
-- ----------------------------
|
||||
17
build/database/lite/install/param_value.sql
Normal file
17
build/database/lite/install/param_value.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for param_value
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "param_value";
|
||||
CREATE TABLE "param_value" (
|
||||
"id" integer(11) NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_id" text(64) NOT NULL,
|
||||
"flag" integer(4) NOT NULL,
|
||||
"top_tag" text(32) NOT NULL,
|
||||
"value_json" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of param_value
|
||||
-- ----------------------------
|
||||
23
build/database/lite/install/pm_custom_data.sql
Normal file
23
build/database/lite/install/pm_custom_data.sql
Normal file
@@ -0,0 +1,23 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for pm_custom_data
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "pm_custom_data";
|
||||
CREATE TABLE "pm_custom_data" (
|
||||
"id" integer NOT NULL,
|
||||
"date" text,
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"ne_type" text(16),
|
||||
"granul_option" text(255),
|
||||
"object_type" text(32),
|
||||
"kpi_id" text(64),
|
||||
"start_time" text,
|
||||
"end_time" text,
|
||||
"value" integer,
|
||||
"timestamp" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of pm_custom_data
|
||||
-- ----------------------------
|
||||
21
build/database/lite/install/pm_template.sql
Normal file
21
build/database/lite/install/pm_template.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for pm_template
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "pm_template";
|
||||
CREATE TABLE "pm_template" (
|
||||
"id" integer NOT NULL,
|
||||
"name" text(64),
|
||||
"ne_type" text(16),
|
||||
"object_type" text(16) NOT NULL,
|
||||
"kpi_set" text,
|
||||
"created_user" text(32),
|
||||
"description" text(255),
|
||||
"created_time" text,
|
||||
"updata_time" text,
|
||||
"kpi_id" text(64),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of pm_template
|
||||
-- ----------------------------
|
||||
46
build/database/lite/install/sys_config.sql
Normal file
46
build/database/lite/install/sys_config.sql
Normal file
@@ -0,0 +1,46 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_config
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_config";
|
||||
CREATE TABLE "sys_config" (
|
||||
"config_id" integer NOT NULL,
|
||||
"config_name" text(64),
|
||||
"config_key" text(64),
|
||||
"config_value" text(500),
|
||||
"config_type" text(1),
|
||||
"del_flag" text(1),
|
||||
"create_by" text(64),
|
||||
"create_time" integer,
|
||||
"update_by" text(64),
|
||||
"update_time" integer,
|
||||
"remark" text(500),
|
||||
PRIMARY KEY ("config_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_config
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_config" VALUES (1, 'config.sys.user.initPassword', 'sys.user.initPassword', 'Abcd@1234..', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.initPasswordRemark');
|
||||
INSERT INTO "sys_config" VALUES (2, 'config.sys.account.captchaEnabled', 'sys.account.captchaEnabled', 'false', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.account.captchaEnabledRemark');
|
||||
INSERT INTO "sys_config" VALUES (3, 'config.sys.account.registerUser', 'sys.account.registerUser', 'false', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.account.registerUserRemark');
|
||||
INSERT INTO "sys_config" VALUES (4, 'config.sys.user.maxRetryCount', 'sys.user.maxRetryCount', '5', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.maxRetryCountRemark');
|
||||
INSERT INTO "sys_config" VALUES (5, 'config.sys.user.lockTime', 'sys.user.lockTime', '10', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.lockTimeRemark');
|
||||
INSERT INTO "sys_config" VALUES (6, 'config.sys.officialUrl', 'sys.officialUrl', '#', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.officialUrlRemark');
|
||||
INSERT INTO "sys_config" VALUES (7, 'config.sys.helpDoc', 'sys.helpDoc', '/static/helpDoc/{language}_doc.pdf', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.helpDocRemark');
|
||||
INSERT INTO "sys_config" VALUES (8, 'sys.account.captchaType', 'sys.account.captchaType', 'math', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'sys.account.captchaTypeRemark');
|
||||
INSERT INTO "sys_config" VALUES (9, 'config.sys.user.passwordPolicy', 'sys.user.passwordPolicy', '{"minLength":8,"specialChars":2,"uppercase":1,"lowercase":1}', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.passwordPolicyRemark');
|
||||
INSERT INTO "sys_config" VALUES (10, 'config.sys.user.passwdExpire', 'sys.user.passwdExpire', '{"expHours":0,"alertHours":360}', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.passwdExpireRemark');
|
||||
INSERT INTO "sys_config" VALUES (11, 'config.sys.user.fristPasswdChange', 'sys.user.fristPasswdChange', 'false', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.fristPasswdChangeRemark');
|
||||
INSERT INTO "sys_config" VALUES (12, 'config.sys.user.passwdNotAllowedHistory', 'sys.user.passwdNotAllowedHistory', '0', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.user.passwdNotAllowedHistoryRemark');
|
||||
INSERT INTO "sys_config" VALUES (21, 'config.monitor.sysResource.storeDays', 'monitor.sysResource.storeDays', '30', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.monitor.sysResource.storeDaysRemark');
|
||||
INSERT INTO "sys_config" VALUES (22, 'config.sys.logo.type', 'sys.logo.type', 'brand', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.logo.typeRemark');
|
||||
INSERT INTO "sys_config" VALUES (23, 'config.sys.logo.filePathIcon', 'sys.logo.filePathIcon', '/static/logo/{language}_icon.png', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.logo.filePathIconRemark');
|
||||
INSERT INTO "sys_config" VALUES (24, 'config.sys.logo.filePathBrand', 'sys.logo.filePathBrand', '/static/logo/{language}_brand.png', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.logo.filePathBrandRemark');
|
||||
INSERT INTO "sys_config" VALUES (25, 'config.sys.loginBackground', 'sys.loginBackground', '#', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.loginBackgroundRemark');
|
||||
INSERT INTO "sys_config" VALUES (26, 'config.sys.title', 'sys.title', 'config.sys.titleValue', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.titleRemark');
|
||||
INSERT INTO "sys_config" VALUES (27, 'config.sys.copyright', 'sys.copyright', 'config.sys.copyrightValue', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.copyrightRemark');
|
||||
INSERT INTO "sys_config" VALUES (28, 'config.sys.i18nOpen', 'sys.i18n.open', 'true', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.i18nOpenRemark');
|
||||
INSERT INTO "sys_config" VALUES (29, 'config.sys.i18nDefault', 'sys.i18n.default', 'en_US', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.i18nDefaultRemark');
|
||||
INSERT INTO "sys_config" VALUES (30, 'config.sys.lockTime', 'sys.lockTime', '0', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.lockTimeRemark');
|
||||
INSERT INTO "sys_config" VALUES (31, 'config.sys.homePage', 'sys.homePage', 'dashboard/overview/index', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.sys.homePageRemark');
|
||||
INSERT INTO "sys_config" VALUES (32, 'config.neData.backupDataFTP', 'neData.backupDataFTP', 'VXEECeDMoYhX29pqsb753ecJOnPfxB6XrEa9QdUrRqwKI7EmJei5HlvehvL+wL0Osjo3Y2Qs7ADA6eL3SrisiVXAVVXv38KMhvcSU9eaAzl/jrY4ahsq6a/eSbzxFDgE21US7/YnsyDRG7eGAc7W5Q==', 'Y', '0', 'system', 1704960008300, 'system', 1704960008300, 'config.neData.backupDataFTPRemark');
|
||||
27
build/database/lite/install/sys_dept.sql
Normal file
27
build/database/lite/install/sys_dept.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_dept
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_dept";
|
||||
CREATE TABLE "sys_dept" (
|
||||
"dept_id" integer NOT NULL,
|
||||
"parent_id" integer(20),
|
||||
"ancestors" text(255),
|
||||
"dept_name" text(255),
|
||||
"dept_sort" integer(11),
|
||||
"leader" text(32),
|
||||
"phone" text(32),
|
||||
"email" text(64),
|
||||
"status_flag" text(1),
|
||||
"del_flag" text(1),
|
||||
"create_by" text(64),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(64),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("dept_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_dept
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_dept" VALUES (100, 0, '0', 'dept.root', 0, 'system', '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468);
|
||||
INSERT INTO "sys_dept" VALUES (101, 100, '0,100', 'dept.root.item1', 1, 'system', '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468);
|
||||
193
build/database/lite/install/sys_dict_data.sql
Normal file
193
build/database/lite/install/sys_dict_data.sql
Normal file
@@ -0,0 +1,193 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_dict_data
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_dict_data";
|
||||
CREATE TABLE "sys_dict_data" (
|
||||
"data_id" integer NOT NULL,
|
||||
"dict_type" text(64) NOT NULL,
|
||||
"data_label" text(255) NOT NULL,
|
||||
"data_value" text(512) NOT NULL,
|
||||
"data_sort" integer(11),
|
||||
"tag_class" text(64),
|
||||
"tag_type" text(12),
|
||||
"status_flag" text(1),
|
||||
"del_flag" text(1),
|
||||
"create_by" text(64),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(64),
|
||||
"update_time" integer(20),
|
||||
"remark" text(500),
|
||||
PRIMARY KEY ("data_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_dict_data
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_dict_data" VALUES (1, 'sys_user_sex', 'dictData.sex.un', '0', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (2, 'sys_user_sex', 'dictData.sex.male', '1', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (3, 'sys_user_sex', 'dictData.sex.female', '2', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (4, 'sys_show_hide', 'dictData.show', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (5, 'sys_show_hide', 'dictData.hide', '0', 2, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (6, 'sys_normal_disable', 'dictData.normal', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (7, 'sys_normal_disable', 'dictData.disable', '0', 2, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (8, 'sys_yes_no', 'dictData.yes', 'Y', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (9, 'sys_yes_no', 'dictData.no', 'N', 2, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (10, 'sys_common_status', 'dictData.success', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (11, 'sys_common_status', 'dictData.fail', '0', 2, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (12, 'sys_job_status', 'dictData.jobStatus.normal', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (13, 'sys_job_status', 'dictData.jobStatus.pause', '0', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (14, 'sys_job_group', 'dictData.jobGroup.Default', 'DEFAULT', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (15, 'sys_job_group', 'dictData.jobGroup.System', 'SYSTEM', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (16, 'sys_oper_type', 'dictData.operType.other', '0', 1, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (17, 'sys_oper_type', 'dictData.operType.add', '1', 2, '', 'blue', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (18, 'sys_oper_type', 'dictData.operType.edit', '2', 3, '', 'cyan', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (19, 'sys_oper_type', 'dictData.operType.delete', '3', 4, '', 'red', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (20, 'sys_oper_type', 'dictData.operType.auth', '4', 5, '', '#108ee9', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (21, 'sys_oper_type', 'dictData.operType.export', '5', 6, '', 'orange', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (22, 'sys_oper_type', 'dictData.operType.import', '6', 7, '', 'orange', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (23, 'sys_oper_type', 'dictData.operType.forced quit', '7', 8, '', 'default', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (24, 'sys_oper_type', 'dictData.operType.clear', '8', 9, '', '#f50', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (25, 'trace_type', 'dictData.trace.interface', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (26, 'trace_type', 'dictData.trace.device', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (27, 'trace_type', 'dictData.trace.user', '3', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (28, 'sys_job_save_log', 'dictData.jobSaveLog.no', '0', 8, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (29, 'sys_job_save_log', 'dictData.jobSaveLog.yes', '1', 9, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (30, 'ne_host_type', 'dictData.ne_host_type.redis', 'redis', 2, '', 'magenta', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (31, 'alarm_status', 'dictData.alarmStatus.history', '0', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (32, 'alarm_status', 'dictData.alarmStatus.active', '1', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (33, 'sys_role_datascope', 'dictData.datascope.all', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (34, 'sys_role_datascope', 'dictData.datascope.custom', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (35, 'sys_role_datascope', 'dictData.datascope.dept', '3', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (36, 'sys_role_datascope', 'dictData.datascope.deptAndChid', '4', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (37, 'sys_role_datascope', 'dictData.datascope.self', '5', 5, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (38, 'active_alarm_type', 'dictData.active_alarm_type.communication', '1', 1, '', 'gold', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (39, 'active_alarm_type', 'dictData.active_alarm_type.equipment', '2', 2, '', 'cyan', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (40, 'active_alarm_type', 'dictData.active_alarm_type.processing', '3', 3, '', 'blue ', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (41, 'active_alarm_type', 'dictData.active_alarm_type.environmental', '4', 4, '', 'yellow', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (42, 'active_alarm_type', 'dictData.active_alarm_type.qualityOfService', '5', 5, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (43, 'active_clear_type', 'dictData.active_clear_type.notCleared', '0', 0, '', 'processing', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (44, 'active_clear_type', 'dictData.active_clear_type.auto', '1', 1, '', 'gold', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (45, 'active_clear_type', 'dictData.active_clear_type.hand', '2', 2, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (46, 'active_ack_state', 'dictData.active_ack_state.unconfirmed', '0', 0, '', 'processing', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (47, 'active_ack_state', 'dictData.active_ack_state.confirmed', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (48, 'active_alarm_severity', 'dictData.active_alarm_severity.critical', '1', 1, '', 'gold', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (49, 'active_alarm_severity', 'dictData.active_alarm_severity.major', '2', 2, '', 'cyan', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (50, 'active_alarm_severity', 'dictData.active_alarm_severity.minor', '3', 3, '', 'blue ', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (51, 'active_alarm_severity', 'dictData.active_alarm_severity.warning', '4', 4, '', 'yellow', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (52, 'active_alarm_severity', 'dictData.active_alarm_severity.event', '5', 5, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (53, 'index_status', 'dictType.index_status.normal', 'normal', 1, '#91cc75', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (54, 'index_status', 'dictType.index_status.abnormal', 'abnormal', 2, '#ee6666', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (55, 'cdr_sip_code', 'dictData.cdr_sip_code.200', '200', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (56, 'cdr_sip_code', 'dictData.cdr_sip_code.403', '403', 5, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (57, 'cdr_sip_code', 'dictData.cdr_sip_code.408', '408', 13, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (58, 'cdr_sip_code', 'dictData.cdr_sip_code.500', '500', 16, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (59, 'cdr_call_type', 'dictData.cdr_call_type.audio', 'audio', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (60, 'cdr_call_type', 'dictData.cdr_call_type.video', 'video', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (61, 'ue_auth_code', 'dictData.ue_auth_code.200', '200', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (62, 'ue_auth_code', 'dictData.ue_auth_code.001', '001', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (63, 'ue_auth_code', 'dictData.ue_auth_code.002', '002', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (64, 'ue_auth_code', 'dictData.ue_auth_code.003', '003', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (65, 'ue_auth_code', 'dictData.ue_auth_code.004', '004', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (66, 'ue_auth_code', 'dictData.ue_auth_code.005', '005', 5, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (67, 'ue_auth_code', 'dictData.ue_auth_code.006', '006', 6, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (68, 'ue_auth_code', 'dictData.ue_auth_code.007', '007', 7, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (69, 'ue_event_type', 'dictData.ue_event_type.auth', 'auth-result', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (70, 'ue_event_type', 'dictData.ue_event_type.detach', 'detach', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (71, 'ue_event_type', 'dictData.ue_event_type.state', 'cm-state', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (72, 'ue_event_cm_state', 'dictData.ue_event_cm_state.connected', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (73, 'ue_event_cm_state', 'dictData.ue_event_cm_state.idle', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (74, 'ue_event_cm_state', 'dictData.ue_event_cm_state.inactive', '3', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (75, 'cdr_sip_code', 'dictData.cdr_sip_code.404', '404', 6, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (76, 'cdr_sip_code', 'dictData.cdr_sip_code.487', '487', 12, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (77, 'cdr_sip_code', 'dictData.cdr_sip_code.503', '503', 17, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (78, 'cdr_sip_code', 'dictData.cdr_sip_code.504', '504', 18, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (79, 'cdr_sip_code', 'dictData.cdr_sip_code.603', '603', 21, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (80, 'cdr_sip_code', 'dictData.cdr_sip_code.606', '606', 22, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (81, 'cdr_sip_code', 'dictData.cdr_sip_code.202', '202', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (82, 'cdr_call_type', 'dictData.cdr_call_type.sms', 'sms', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (83, 'cdr_sip_code', 'dictData.cdr_sip_code.488', '488', 14, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (84, 'cdr_sip_code', 'dictData.cdr_sip_code.0', '0', 99, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (85, 'ne_host_type', 'dictData.ne_host_type.ssh', 'ssh', 0, '', 'blue', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (86, 'ne_host_type', 'dictData.ne_host_type.telnet', 'telnet', 1, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (87, 'ne_host_groupId', 'dictData.ne_host_groupId.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (88, 'ne_host_groupId', 'dictData.ne_host_groupId.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (89, 'ne_host_groupId', 'dictData.ne_host_groupId.2', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (90, 'ne_host_authMode', 'dictData.ne_host_authMode.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (91, 'ne_host_authMode', 'dictData.ne_host_authMode.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (92, 'ne_host_cmd_groupId', 'dictData.ne_host_cmd_groupId.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (93, 'ne_host_cmd_groupId', 'dictData.ne_host_cmd_groupId.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (94, 'ne_info_status', 'dictData.ne_info_status.0', '0', 0, '', 'error', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (95, 'ne_info_status', 'dictData.ne_info_status.1', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (96, 'ne_info_status', 'dictData.ne_info_status.2', '2', 2, '', 'orange', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (97, 'ne_info_status', 'dictData.ne_info_status.3', '3', 3, '', 'blue', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (98, 'ne_license_status', 'dictData.ne_license_status.0', '0', 0, '', 'warning', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (99, 'ne_license_status', 'dictData.ne_license_status.1', '1', 1, '', 'processing', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (100, 'ne_host_authMode', 'dictData.ne_host_authMode.2', '2', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (101, 'ne_version_status', 'dictData.ne_version_status.0', '0', 0, '', 'default', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (102, 'ne_version_status', 'dictData.ne_version_status.1', '1', 1, '', 'success', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (103, 'ne_version_status', 'dictData.ne_version_status.2', '2', 1, '', 'purple', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (104, 'ne_version_status', 'dictData.ne_version_status.3', '3', 1, '', 'processing', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (105, 'cdr_cause_code', 'dictData.cdr_cause_code.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (106, 'cdr_cause_code', 'dictData.cdr_cause_code.8', '8', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (107, 'cdr_cause_code', 'dictData.cdr_cause_code.10', '10', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (108, 'cdr_cause_code', 'dictData.cdr_cause_code.21', '21', 10, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (109, 'cdr_cause_code', 'dictData.cdr_cause_code.22', '22', 11, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (110, 'cdr_cause_code', 'dictData.cdr_cause_code.27', '27', 12, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (111, 'cdr_cause_code', 'dictData.cdr_cause_code.28', '28', 13, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (112, 'cdr_cause_code', 'dictData.cdr_cause_code.29', '29', 14, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (113, 'cdr_cause_code', 'dictData.cdr_cause_code.30', '30', 15, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (114, 'cdr_cause_code', 'dictData.cdr_cause_code.38', '38', 16, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (115, 'cdr_cause_code', 'dictData.cdr_cause_code.41', '41', 20, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (116, 'cdr_cause_code', 'dictData.cdr_cause_code.41', '41', 21, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (117, 'cdr_cause_code', 'dictData.cdr_cause_code.42', '42', 22, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (118, 'cdr_cause_code', 'dictData.cdr_cause_code.47', '47', 23, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (119, 'cdr_cause_code', 'dictData.cdr_cause_code.50', '50', 30, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (120, 'trace_msg_type', 'dictData.trace_msg_type.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (121, 'trace_msg_type', 'dictData.trace_msg_type.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (122, 'trace_msg_direct', 'dictData.trace_msg_direct.0', '0', 0, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (123, 'trace_msg_direct', 'dictData.trace_msg_direct.1', '1', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (124, 'trace_interfaces', 'dictData.trace_interfaces.1', 'N1', 1, '', '', '0', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (125, 'trace_interfaces', 'dictData.trace_interfaces.2', 'N2', 2, '', '', '0', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (126, 'trace_interfaces', 'dictData.trace_interfaces.3', 'N1/N2', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (127, 'trace_interfaces', 'dictData.trace_interfaces.4', 'N4', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (128, 'trace_interfaces', 'dictData.trace_interfaces.8', 'N8', 8, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (129, 'trace_interfaces', 'dictData.trace_interfaces.10', 'N10', 10, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (130, 'trace_interfaces', 'dictData.trace_interfaces.11', 'N11', 11, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (131, 'trace_interfaces', 'dictData.trace_interfaces.12', 'N12', 12, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (132, 'trace_interfaces', 'dictData.trace_interfaces.13', 'N13', 13, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (133, 'trace_interfaces', 'dictData.trace_interfaces.7', 'N7', 7, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (134, 'trace_interfaces', 'dictData.trace_interfaces.15', 'N15', 15, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (135, 'trace_interfaces', 'dictData.trace_interfaces.17', 'N17', 17, '', '', '0', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (136, 'trace_interfaces', 'dictData.trace_interfaces.20', 'N20', 20, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (137, 'trace_interfaces', 'dictData.trace_interfaces.22', 'N22', 22, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (138, 'trace_interfaces', 'dictData.trace_interfaces.40', 'N40', 40, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (139, 'cdr_sip_code', 'dictData.cdr_sip_code.302', '302', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (140, 'cdr_sip_code', 'dictData.cdr_sip_code.402', '402', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (141, 'cdr_sip_code', 'dictData.cdr_sip_code.480', '480', 7, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (142, 'cdr_sip_code', 'dictData.cdr_sip_code.481', '481', 8, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (143, 'cdr_sip_code', 'dictData.cdr_sip_code.482', '482', 9, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (144, 'cdr_sip_code', 'dictData.cdr_sip_code.486', '486', 11, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (145, 'cdr_sip_code', 'dictData.cdr_sip_code.489', '489', 15, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (146, 'cdr_sip_code', 'dictData.cdr_sip_code.580', '580', 19, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (147, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.0', '0', 99, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (148, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.200', '200', 1, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (149, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.202', '202', 2, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (150, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.302', '302', 3, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (151, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.402', '402', 4, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (152, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.403', '403', 5, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (153, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.404', '404', 6, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (154, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.480', '480', 7, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (155, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.481', '481', 8, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (156, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.482', '482', 9, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (157, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.486', '486', 11, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (158, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.487', '487', 12, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (159, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.408', '408', 13, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (160, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.488', '488', 14, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (161, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.489', '489', 15, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (162, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.500', '500', 16, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (163, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.503', '503', 17, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (164, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.504', '504', 18, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (165, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.580', '580', 19, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (166, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.603', '603', 21, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_data" VALUES (167, 'cdr_sip_code_cause', 'dictData.cdr_sip_code_cause.606', '606', 22, '', '', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
|
||||
54
build/database/lite/install/sys_dict_type.sql
Normal file
54
build/database/lite/install/sys_dict_type.sql
Normal file
@@ -0,0 +1,54 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_dict_type
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_dict_type";
|
||||
CREATE TABLE "sys_dict_type" (
|
||||
"dict_id" integer NOT NULL,
|
||||
"dict_name" text(64) NOT NULL,
|
||||
"dict_type" text(64) NOT NULL,
|
||||
"status_flag" text(1),
|
||||
"del_flag" text(1),
|
||||
"create_by" text(64),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(64),
|
||||
"update_time" integer(20),
|
||||
"remark" text(500),
|
||||
PRIMARY KEY ("dict_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_dict_type
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_dict_type" VALUES (1, 'dictType.sys_user_sex', 'sys_user_sex', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_user_sex_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (2, 'dictType.sys_show_hide', 'sys_show_hide', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_show_hide_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (3, 'dictType.sys_normal_disable', 'sys_normal_disable', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_normal_disable_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (4, 'dictType.sys_job_status', 'sys_job_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_job_status_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (5, 'dictType.sys_job_group', 'sys_job_group', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_job_group_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (6, 'dictType.sys_yes_no', 'sys_yes_no', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_yes_no_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (9, 'dictType.sys_oper_type', 'sys_oper_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_oper_type_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (10, 'dictType.sys_common_status', 'sys_common_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_common_status_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (50, 'dictType.trace_type', 'trace_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.trace_type_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (51, 'dictType.alarm_status', 'alarm_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.alarm_status_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (52, 'dictType.ne_version_status', 'ne_version_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.ne_version_status_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (53, 'dictType.sys_role_datascope', 'sys_role_datascope', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.sys_role_datascope_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (54, 'dictType.active_alarm_type', 'active_alarm_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.active_alarm_type_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (55, 'dictType.active_clear_type', 'active_clear_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.active_clear_type_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (56, 'dictType.active_ack_state', 'active_ack_state', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.active_ack_state_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (57, 'dictType.active_alarm_severity', 'active_alarm_severity', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.active_alarm_severity_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (58, 'dictType.index_status', 'index_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, 'dictType.index_status_remark');
|
||||
INSERT INTO "sys_dict_type" VALUES (59, 'dictType.cdr_sip_code', 'cdr_sip_code', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (60, 'dictType.cdr_call_type', 'cdr_call_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (61, 'dictType.ue_auth_code', 'ue_auth_code', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (62, 'dictType.ue_event_type', 'ue_event_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (63, 'dictType.ue_event_cm_state', 'ue_event_cm_state', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (64, 'dictType.ne_host_type', 'ne_host_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (65, 'dictType.ne_host_groupId', 'ne_host_groupId', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (66, 'dictType.ne_host_authMode', 'ne_host_authMode', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (67, 'dictType.ne_host_cmd_groupId', 'ne_host_cmd_groupId', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (68, 'dictType.ne_info_status', 'ne_info_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (69, 'dictType.ne_license_status', 'ne_license_status', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (70, 'dictType.cdr_cause_code', 'cdr_cause_code', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (71, 'dictType.trace_msg_type', 'trace_msg_type', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (72, 'dictType.trace_msg_direct', 'trace_msg_direct', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (73, 'dictType.trace_interfaces', 'trace_interfaces', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
INSERT INTO "sys_dict_type" VALUES (74, 'dictType.cdr_sip_code_cause', 'cdr_sip_code_cause', '1', '0', 'system', 1699348237468, 'system', 1699348237468, '');
|
||||
845
build/database/lite/install/sys_i18n.sql
Normal file
845
build/database/lite/install/sys_i18n.sql
Normal file
@@ -0,0 +1,845 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_i18n
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_i18n";
|
||||
CREATE TABLE "sys_i18n" (
|
||||
"id" integer NOT NULL,
|
||||
"key_lable" text(255) NOT NULL,
|
||||
"value_zh" text(255),
|
||||
"value_en" text(255),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_i18n
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_i18n" VALUES (1, 'i18n', '中文', 'English');
|
||||
INSERT INTO "sys_i18n" VALUES (2, 'hello', '你好', 'Hello');
|
||||
INSERT INTO "sys_i18n" VALUES (3, 'menu.system', '系统', 'System');
|
||||
INSERT INTO "sys_i18n" VALUES (4, 'menu.monitor', '监控', 'Monitor');
|
||||
INSERT INTO "sys_i18n" VALUES (5, 'menu.tools', '工具', 'Tools');
|
||||
INSERT INTO "sys_i18n" VALUES (6, 'menu.ne', '网元', 'NE');
|
||||
INSERT INTO "sys_i18n" VALUES (7, 'menu.ue', '终端', 'UE');
|
||||
INSERT INTO "sys_i18n" VALUES (8, 'menu.systemRemark', '系统管理目录', 'System Management Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (9, 'menu.monitorRemark', '系统监控目录', 'System Monitor Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (10, 'menu.toolsRemark', '系统工具目录', 'System Tools Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (11, 'menu.neRemark', '网元配置管理目录', 'NE Configuration Management Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (12, 'menu.ueRemark', '网元终端信息目录', 'Network Element Terminal Information Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (13, 'menu.security.user', '用户管理', 'User Management');
|
||||
INSERT INTO "sys_i18n" VALUES (14, 'menu.security.role', '角色管理', 'Role Management');
|
||||
INSERT INTO "sys_i18n" VALUES (15, 'menu.security.roleUser', '分配角色', 'Assigning Roles');
|
||||
INSERT INTO "sys_i18n" VALUES (16, 'menu.system.menu', '菜单管理', 'Menu Management');
|
||||
INSERT INTO "sys_i18n" VALUES (17, 'menu.security.dept', '部门管理', 'Department Management');
|
||||
INSERT INTO "sys_i18n" VALUES (18, 'menu.security.post', '岗位管理', 'Position Management');
|
||||
INSERT INTO "sys_i18n" VALUES (19, 'menu.system.dictType', '字典管理', 'Dictionary Management');
|
||||
INSERT INTO "sys_i18n" VALUES (20, 'menu.system.dictData', '字典数据', 'Dictionary Data');
|
||||
INSERT INTO "sys_i18n" VALUES (21, 'menu.system.paramSet', '参数设置', 'Parameter Settings');
|
||||
INSERT INTO "sys_i18n" VALUES (22, 'menu.system.systemLog', '系统日志', 'System Log');
|
||||
INSERT INTO "sys_i18n" VALUES (23, 'menu.system.systemInfo', '系统信息', 'System Information');
|
||||
INSERT INTO "sys_i18n" VALUES (24, 'menu.system.cacheInfo', '缓存信息', 'Cache Information');
|
||||
INSERT INTO "sys_i18n" VALUES (25, 'menu.system.cache', '缓存管理', 'Cache Management');
|
||||
INSERT INTO "sys_i18n" VALUES (26, 'menu.security.onlineUser', '在线用户', 'Online Users');
|
||||
INSERT INTO "sys_i18n" VALUES (27, 'menu.system.job', '调度任务', 'Scheduling Tasks');
|
||||
INSERT INTO "sys_i18n" VALUES (28, 'menu.system.jobLog', '调度日志', 'Scheduling Logs');
|
||||
INSERT INTO "sys_i18n" VALUES (29, 'menu.tools.help', '帮助文档', 'Help Documentation');
|
||||
INSERT INTO "sys_i18n" VALUES (30, 'menu.log.operat', '操作日志', 'Operation logs');
|
||||
INSERT INTO "sys_i18n" VALUES (31, 'menu.log.login', '安全日志', 'Security logs');
|
||||
INSERT INTO "sys_i18n" VALUES (32, 'menu.security.userRemark', '用户管理菜单', 'User Management Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (33, 'menu.security.roleRemark', '角色管理菜单', 'Role Management Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (34, 'menu.security.roleUserRemark', '分配角色内嵌隐藏菜单', 'Assign Roles Embedded Hidden Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (35, 'menu.system.menuRemark', '菜单管理菜单', 'Menu Management Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (36, 'menu.security.deptRemark', '部门管理菜单', 'Department management menu');
|
||||
INSERT INTO "sys_i18n" VALUES (37, 'menu.security.postRemark', '岗位管理菜单', 'Job Management Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (38, 'menu.system.dictTypeRemark', '字典管理菜单', 'Dictionary management menu');
|
||||
INSERT INTO "sys_i18n" VALUES (39, 'menu.system.dictDataRemark', '字典数据内嵌隐藏菜单', 'Dictionary data embedded hidden menu');
|
||||
INSERT INTO "sys_i18n" VALUES (40, 'menu.system.paramSetRemark', '参数设置菜单', 'Parameter setting menu');
|
||||
INSERT INTO "sys_i18n" VALUES (41, 'menu.system.systemLogRemark', '系统日志目录', 'System Log Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (42, 'menu.system.systemInfoRemark', '系统信息菜单', 'System information menu');
|
||||
INSERT INTO "sys_i18n" VALUES (43, 'menu.system.cacheInfoRemark', '缓存信息菜单', 'Cache Information Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (44, 'menu.system.cacheRemark', '缓存列表菜单', 'Cache List Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (45, 'menu.security.onlineUserRemark', '在线用户菜单', 'Online User Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (46, 'menu.system.jobRemark', '调度任务菜单', 'Scheduling Tasks menu');
|
||||
INSERT INTO "sys_i18n" VALUES (47, 'menu.system.jobLogRemark', '调度日志内嵌隐藏菜单', 'Scheduling Log Embedded Hidden Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (48, 'menu.tools.helpRemark', '帮助文档菜单', 'Help file menu');
|
||||
INSERT INTO "sys_i18n" VALUES (49, 'menu.log.operatRemark', '操作日志菜单', 'Operation log menu');
|
||||
INSERT INTO "sys_i18n" VALUES (50, 'menu.log.loginRemark', '登录日志菜单', 'Login log menu');
|
||||
INSERT INTO "sys_i18n" VALUES (51, 'menu.common.query', '查询', 'Inquiry');
|
||||
INSERT INTO "sys_i18n" VALUES (52, 'menu.common.add', '新增', 'Add');
|
||||
INSERT INTO "sys_i18n" VALUES (53, 'menu.common.edit', '修改', 'Modify');
|
||||
INSERT INTO "sys_i18n" VALUES (54, 'menu.common.delete', '删除', 'Delete');
|
||||
INSERT INTO "sys_i18n" VALUES (55, 'menu.common.export', '导出', 'Export');
|
||||
INSERT INTO "sys_i18n" VALUES (56, 'menu.common.import', '导入', 'Import');
|
||||
INSERT INTO "sys_i18n" VALUES (57, 'menu.common.resetPwd', '重置密码', 'Reset Password');
|
||||
INSERT INTO "sys_i18n" VALUES (58, 'menu.common.unlock', '账户解锁', 'Account Unlock');
|
||||
INSERT INTO "sys_i18n" VALUES (59, 'menu.forcedQuit.batch ', '批量强退', 'Batch Undo');
|
||||
INSERT INTO "sys_i18n" VALUES (60, 'menu.forcedQuit.single', '单条强退', 'Individual Forced Retirement');
|
||||
INSERT INTO "sys_i18n" VALUES (61, 'menu.neData.udmAuth', 'UDM鉴权用户', 'UDM Authentication');
|
||||
INSERT INTO "sys_i18n" VALUES (62, 'menu.neData.udmSub', 'UDM签约用户', 'UDM Subscribers');
|
||||
INSERT INTO "sys_i18n" VALUES (63, 'menu.neData.udmVOIP', 'VOIP鉴权用户', 'VOIP Authentication');
|
||||
INSERT INTO "sys_i18n" VALUES (64, 'menu.neData.udmVolte', 'IMS签约用户', 'IMS Subscribers');
|
||||
INSERT INTO "sys_i18n" VALUES (65, 'menu.neData.imsSub', 'IMS在线用户', 'IMS Online Users');
|
||||
INSERT INTO "sys_i18n" VALUES (66, 'menu.neData.smfSub', 'UE在线信息', 'UE Online Information');
|
||||
INSERT INTO "sys_i18n" VALUES (67, 'menu.neData.baseOnline', '基站在线', 'Radio Online');
|
||||
INSERT INTO "sys_i18n" VALUES (68, 'menu.trace', '跟踪', 'Trace');
|
||||
INSERT INTO "sys_i18n" VALUES (69, 'menu.trace.task', '网元跟踪任务', 'NE Trace Task');
|
||||
INSERT INTO "sys_i18n" VALUES (70, 'menu.trace.taskData', '网元跟踪任务数据', 'NE Trace Task Data');
|
||||
INSERT INTO "sys_i18n" VALUES (71, 'menu.trace.pcap', '信令抓包', 'Signaling Capture');
|
||||
INSERT INTO "sys_i18n" VALUES (72, 'menu.fault', '监控', 'Monitor');
|
||||
INSERT INTO "sys_i18n" VALUES (73, 'config.neData.backupDataFTP', '备份网元数据-同步FTP服务', 'Backup NE Data - Sync Data FTP Service');
|
||||
INSERT INTO "sys_i18n" VALUES (74, 'config.neData.backupDataFTPRemark', '请通过系统页面进行设置FTP信息', 'Please set the FTP information through the system page.');
|
||||
INSERT INTO "sys_i18n" VALUES (75, 'job.backup_export_table_sys_log_operate_remark', 'hour: 数据时间从任务执行时间前的小时数
|
||||
tableName: 数据表名
|
||||
columns: 支持字段
|
||||
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
|
||||
tableName: data table name
|
||||
columns: support fields
|
||||
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
|
||||
INSERT INTO "sys_i18n" VALUES (76, 'job.backup_export_table_cdr_event_ims_remark', 'hour: 数据时间从任务执行时间前的小时数
|
||||
tableName: 数据表名
|
||||
columns: 支持字段
|
||||
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
|
||||
tableName: data table name
|
||||
columns: support fields
|
||||
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
|
||||
INSERT INTO "sys_i18n" VALUES (77, 'job.backup_export_table_cdr_event_smf_remark', 'hour: 数据时间从任务执行时间前的小时数
|
||||
tableName: 数据表名
|
||||
columns: 支持字段
|
||||
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
|
||||
tableName: data table name
|
||||
columns: support fields
|
||||
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
|
||||
INSERT INTO "sys_i18n" VALUES (78, 'menu.traceRemark', '跟踪管理目录', 'Tracking Management Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (79, 'menu.trace.taskRemark', '跟踪任务菜单', 'Tracking Task Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (80, 'config.sys.user.fristPasswdChange', '用户管理-首次登录密码修改', 'User Management-First Login Password Change');
|
||||
INSERT INTO "sys_i18n" VALUES (81, 'menu.trace.pcapRemark', '信令抓包菜单', 'Signaling Capture Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (82, 'menu.faultRemark', '故障管理目录', 'Fault Management Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (83, 'menu.fault.active', '活动告警', 'Active Alarms');
|
||||
INSERT INTO "sys_i18n" VALUES (84, 'menu.log', '日志', 'Logs');
|
||||
INSERT INTO "sys_i18n" VALUES (85, 'menu.log.mml', 'MML日志', 'MML Logs');
|
||||
INSERT INTO "sys_i18n" VALUES (86, 'menu.log.alarm', '告警日志', 'Alarm Logs');
|
||||
INSERT INTO "sys_i18n" VALUES (87, 'menu.log.forwarding', '告警前转日志', 'Alarm Forwarding Logs');
|
||||
INSERT INTO "sys_i18n" VALUES (88, 'menu.log.set', '日志设置', 'Log Settings');
|
||||
INSERT INTO "sys_i18n" VALUES (89, 'menu.monitor.sessionUser', '用户会话', 'User Sessions');
|
||||
INSERT INTO "sys_i18n" VALUES (90, 'menu.fault.history', '历史告警', 'Historical Alarms');
|
||||
INSERT INTO "sys_i18n" VALUES (91, 'menu.fault.set', '设置', 'Settings');
|
||||
INSERT INTO "sys_i18n" VALUES (92, 'menu.perf', '性能', 'Performance');
|
||||
INSERT INTO "sys_i18n" VALUES (93, 'menu.fault.activemRemark', '活动告警菜单', 'Active Alarm Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (94, 'menu.logRemark', '日志管理目录', 'Log Management Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (95, 'menu.log.operatOldRemark', '操作日志旧layui菜单', 'Operation log old layui menu');
|
||||
INSERT INTO "sys_i18n" VALUES (96, 'menu.log.mmlRemark', '操作MML日志', 'Operation MML Log');
|
||||
INSERT INTO "sys_i18n" VALUES (97, 'menu.log.alarmRemark', '告警日志菜单', 'Alarm Log Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (98, 'menu.log.securityOldRemark', '安全日志旧layui菜单', 'Security Log Old Layui Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (99, 'menu.log.forwardingRemark', '告警前转日志菜单', 'Alarm forward log menu');
|
||||
INSERT INTO "sys_i18n" VALUES (100, 'menu.log.setRemark', '日志设置菜单', 'Log Settings menu');
|
||||
INSERT INTO "sys_i18n" VALUES (101, 'menu.monitor.sessionUserRemark', '用户会话旧layui菜单', 'User Session Old Layui Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (102, 'menu.fault.historyRemark', '历史告警菜单', 'Alarm history menu');
|
||||
INSERT INTO "sys_i18n" VALUES (103, 'menu.fault.setRemark', '故障通用设置菜单', 'Fault General Setup Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (104, 'menu.perfRemark', '性能目录', 'Performance Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (105, 'menu.perf.task', '任务管理', 'Performance Tasks');
|
||||
INSERT INTO "sys_i18n" VALUES (106, 'menu.perf.data', '性能数据', 'Performance Data');
|
||||
INSERT INTO "sys_i18n" VALUES (107, 'menu.perf.kpiOverView', '关键指标概览', 'Key Performance Overview');
|
||||
INSERT INTO "sys_i18n" VALUES (108, 'menu.perf.threshold', '性能门限', 'Performance Thresholds');
|
||||
INSERT INTO "sys_i18n" VALUES (109, 'menu.perf.kpi', '关键指标', 'Key Performance Indicators');
|
||||
INSERT INTO "sys_i18n" VALUES (110, 'menu.perf.customTarget', '自定义指标', 'Custom Indicator Management');
|
||||
INSERT INTO "sys_i18n" VALUES (111, 'menu.perf.kpiKeyTarget', '关键指标报表', 'Key Performance Reports');
|
||||
INSERT INTO "sys_i18n" VALUES (112, 'menu.mml', 'MML', 'MML');
|
||||
INSERT INTO "sys_i18n" VALUES (113, 'menu.mml.ne', '网元操作', 'NE Operation');
|
||||
INSERT INTO "sys_i18n" VALUES (114, 'menu.mml.udm', 'UDM操作', 'UDM Operation');
|
||||
INSERT INTO "sys_i18n" VALUES (115, 'menu.mml.set', 'MML设置', 'MML Settings');
|
||||
INSERT INTO "sys_i18n" VALUES (116, 'menu.mml.omc', 'OMC操作', 'OMC Operation');
|
||||
INSERT INTO "sys_i18n" VALUES (117, 'menu.perf.taskRemark', '任务管理菜单', 'Task Management Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (118, 'menu.perf.dataRemark', '性能数据菜单', 'Performance Data Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (119, 'menu.dashboard.smscCDR.content', '可见短信内容', 'Visible SMS content');
|
||||
INSERT INTO "sys_i18n" VALUES (120, 'menu.perf.thresholdRemark', '性能门限菜单', 'Performance Threshold Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (121, 'menu.perf.kpiRemark', '黄金指标菜单', 'Key Performance Indicator Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (122, 'menu.perf.customTargetRemark', '自定义指标菜单', 'Custom Indicator Management Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (123, 'menu.dashboard.smfCDRByIMSI', '数据流量报表', 'Data Usage Report');
|
||||
INSERT INTO "sys_i18n" VALUES (124, 'menu.mmlRemark', 'MML管理目录', 'MML Management Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (125, 'menu.mml.neRemark', '网元操作菜单', 'Network Element Operations Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (126, 'menu.mml.udmRemark', '网元UDM用户数据菜单', 'Network Element UDM User Data Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (127, 'menu.mml.setRemark', 'MML设置菜单', 'MML Setup Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (128, 'menu.mml.omcRemark', 'OMC操作菜单', 'OMC Operation Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (129, 'menu.dashboard.sgwcCDR', '漫游数据话单', 'Roaming Data CDR');
|
||||
INSERT INTO "sys_i18n" VALUES (130, 'menu.security', '安全', 'Security');
|
||||
INSERT INTO "sys_i18n" VALUES (131, 'menu.system.systemSet', '系统设置', 'System Settings');
|
||||
INSERT INTO "sys_i18n" VALUES (132, 'menu.system.systemResource', '系统资源', 'System Resources');
|
||||
INSERT INTO "sys_i18n" VALUES (133, 'log.operate.title.sgwcCDR', '漫游数据话单', 'Roaming Data CDR');
|
||||
INSERT INTO "sys_i18n" VALUES (134, 'menu.securityRemark', '安全管理目录', 'Security Management Catalog');
|
||||
INSERT INTO "sys_i18n" VALUES (135, 'menu.system.systemSetRemark', '系统设置菜单', 'System Settings Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (136, 'menu.system.systemResourceRemark', '系统资源 cpu io network菜单', 'System Resources cpu io network menu');
|
||||
INSERT INTO "sys_i18n" VALUES (137, 'dictData.offline', '离线', 'Offline');
|
||||
INSERT INTO "sys_i18n" VALUES (138, 'dictData.online', '在线', 'Online');
|
||||
INSERT INTO "sys_i18n" VALUES (139, 'menu.neData.baseStation', '基站状态', 'Radio State');
|
||||
INSERT INTO "sys_i18n" VALUES (140, 'menu.noData', '没有可访问菜单数据!', 'There is no accessible menu data!');
|
||||
INSERT INTO "sys_i18n" VALUES (141, 'menu.errNameExists', '操作菜单【{name}】失败,菜单名称已存在', 'Failed to operate menu [{name}], menu name already exists!');
|
||||
INSERT INTO "sys_i18n" VALUES (142, 'menu.errPathExists', '操作菜单【{name}】失败,菜单路由地址已存在', 'Failed to operate menu [{name}], menu routing address already exists!');
|
||||
INSERT INTO "sys_i18n" VALUES (143, 'menu.errFramePath', '操作菜单【{name}】失败,非内部地址请以http(s)://开头', 'Failed to manipulate menu [{name}], non-internal address should start with http(s)://');
|
||||
INSERT INTO "sys_i18n" VALUES (144, 'menu.errParentStatus', '上级菜单未启用!', 'The parent menu is not enabled!');
|
||||
INSERT INTO "sys_i18n" VALUES (145, 'menu.errHasChildUse', '操作菜单【{name}】失败,存在使用子菜单数:{num}', 'Operation menu [{name}] failed, number of submenus in use exists: {num}');
|
||||
INSERT INTO "sys_i18n" VALUES (146, 'menu.errHasRoleUse', '操作菜单【{name}】失败,菜单已分配给角色数:{num}', 'Operation menu [{name}] failed, number of roles the menu has been assigned to: {num}');
|
||||
INSERT INTO "sys_i18n" VALUES (147, 'dictData.sex.un', '未选择', 'Not Selected');
|
||||
INSERT INTO "sys_i18n" VALUES (148, 'dictData.sex.male', '男', 'Male');
|
||||
INSERT INTO "sys_i18n" VALUES (149, 'dictData.sex.female', '女', 'Female');
|
||||
INSERT INTO "sys_i18n" VALUES (150, 'dictData.show', '显示', 'Show');
|
||||
INSERT INTO "sys_i18n" VALUES (151, 'dictData.hide', '隐藏', 'Hide');
|
||||
INSERT INTO "sys_i18n" VALUES (152, 'dictData.normal', '正常', 'Active');
|
||||
INSERT INTO "sys_i18n" VALUES (153, 'dictData.disable', '停用', 'Inactive');
|
||||
INSERT INTO "sys_i18n" VALUES (154, 'dictData.yes', '是', 'Yes');
|
||||
INSERT INTO "sys_i18n" VALUES (155, 'dictData.no', '否', 'No');
|
||||
INSERT INTO "sys_i18n" VALUES (156, 'dictData.success', '成功', 'Successful');
|
||||
INSERT INTO "sys_i18n" VALUES (157, 'dictData.fail', '失败', 'Failed');
|
||||
INSERT INTO "sys_i18n" VALUES (158, 'dictData.jobStatus.normal', '正常', 'Active');
|
||||
INSERT INTO "sys_i18n" VALUES (159, 'dictData.jobStatus.pause', '暂停', 'Inactive');
|
||||
INSERT INTO "sys_i18n" VALUES (160, 'dictData.jobGroup.Default', '默认', 'Default');
|
||||
INSERT INTO "sys_i18n" VALUES (161, 'dictData.jobGroup.System', '系统', 'System');
|
||||
INSERT INTO "sys_i18n" VALUES (162, 'dictData.operType.other', '其他', 'Other');
|
||||
INSERT INTO "sys_i18n" VALUES (163, 'dictData.operType.add', '新增', 'New');
|
||||
INSERT INTO "sys_i18n" VALUES (164, 'dictData.operType.edit', '修改', 'Modify');
|
||||
INSERT INTO "sys_i18n" VALUES (165, 'dictData.operType.delete', '删除', 'Delete');
|
||||
INSERT INTO "sys_i18n" VALUES (166, 'dictData.operType.auth', '授权', 'Authorization');
|
||||
INSERT INTO "sys_i18n" VALUES (167, 'dictData.operType.export', '导出', 'Export');
|
||||
INSERT INTO "sys_i18n" VALUES (168, 'dictData.operType.import', '导入', 'Import');
|
||||
INSERT INTO "sys_i18n" VALUES (169, 'dictData.operType.forced quit', '强退', 'Forced Retirement');
|
||||
INSERT INTO "sys_i18n" VALUES (170, 'dictData.operType.clear', '清空', 'Clear');
|
||||
INSERT INTO "sys_i18n" VALUES (171, 'dictData.trace.interface', '接口跟踪', 'Interface Tracing');
|
||||
INSERT INTO "sys_i18n" VALUES (172, 'dictData.trace.device', '设备跟踪', 'Module Tracing');
|
||||
INSERT INTO "sys_i18n" VALUES (173, 'dictData.trace.user', '用户跟踪', 'User Tracing');
|
||||
INSERT INTO "sys_i18n" VALUES (174, 'nbState.export.id', '编号', 'ID');
|
||||
INSERT INTO "sys_i18n" VALUES (175, 'nbState.export.name', '基站名称', 'Name');
|
||||
INSERT INTO "sys_i18n" VALUES (176, 'nbState.export.position', '基站位置', 'Position');
|
||||
INSERT INTO "sys_i18n" VALUES (177, 'nbState.export.address', 'IP地址', 'IP Address');
|
||||
INSERT INTO "sys_i18n" VALUES (178, 'nbState.export.nbName', '设备名称', 'RanNodeName');
|
||||
INSERT INTO "sys_i18n" VALUES (179, 'nbState.export.ueNum', '在线用户数', 'UE Number');
|
||||
INSERT INTO "sys_i18n" VALUES (180, 'nbState.export.state', '基站状态', 'State');
|
||||
INSERT INTO "sys_i18n" VALUES (181, 'nbState.export.time', '变更时间', 'Change Time');
|
||||
INSERT INTO "sys_i18n" VALUES (182, 'neHost.okBySSHLink', '设置免密直连成功', 'Setting up a password-free direct connection is successful');
|
||||
INSERT INTO "sys_i18n" VALUES (183, 'neHost.banNE', '禁止操作网元', 'Do not operate the NE');
|
||||
INSERT INTO "sys_i18n" VALUES (184, 'dictData.ne_host_type.redis', 'Redis', 'Redis');
|
||||
INSERT INTO "sys_i18n" VALUES (185, 'menu.tools.ping', '网络探测测试', 'Net Probing Test');
|
||||
INSERT INTO "sys_i18n" VALUES (186, 'menu.tools.iperf', '网络性能测试', 'Net Performance Test');
|
||||
INSERT INTO "sys_i18n" VALUES (187, 'dictData.jobSaveLog.no', '不记录', 'No Record');
|
||||
INSERT INTO "sys_i18n" VALUES (188, 'dictData.jobSaveLog.yes', '记录', 'Recorded');
|
||||
INSERT INTO "sys_i18n" VALUES (189, 'dictData.neVersionStatus.upload', '已上传', 'Uploaded');
|
||||
INSERT INTO "sys_i18n" VALUES (190, 'dictData.neVersionStatus.inactive', '未激活', 'Inactivated');
|
||||
INSERT INTO "sys_i18n" VALUES (191, 'dictData.neVersionStatus.active', '已激活', 'Activated');
|
||||
INSERT INTO "sys_i18n" VALUES (192, 'dictData.alarmStatus.history', '历史告警', 'Historical Alarm');
|
||||
INSERT INTO "sys_i18n" VALUES (193, 'dictData.alarmStatus.active', '活动告警', 'Active Alarm');
|
||||
INSERT INTO "sys_i18n" VALUES (194, 'dictData.export.code', '数据代码', 'Data Code');
|
||||
INSERT INTO "sys_i18n" VALUES (195, 'dictData.export.sort', '数据排序', 'Data Sort');
|
||||
INSERT INTO "sys_i18n" VALUES (196, 'dictData.export.label', '数据标签', 'Data Key');
|
||||
INSERT INTO "sys_i18n" VALUES (197, 'dictData.export.value', '数据键值', 'Data Value');
|
||||
INSERT INTO "sys_i18n" VALUES (198, 'dictData.export.type', '数据排序', 'Data Type');
|
||||
INSERT INTO "sys_i18n" VALUES (199, 'dictData.export.status', '数据状态', 'Status');
|
||||
INSERT INTO "sys_i18n" VALUES (200, 'dictData.datascope.all', '全部数据权限', 'All data permissions');
|
||||
INSERT INTO "sys_i18n" VALUES (201, 'dictData.datascope.custom', '自定数据权限', 'Customized Data Rights');
|
||||
INSERT INTO "sys_i18n" VALUES (202, 'dictData.datascope.dept', '部门数据权限', 'Departmental Data Permissions');
|
||||
INSERT INTO "sys_i18n" VALUES (203, 'dictData.datascope.deptAndChid', '部门及以下数据权限', 'Department and below');
|
||||
INSERT INTO "sys_i18n" VALUES (204, 'dictData.datascope.self', '仅本人数据权限', 'Personal data access only');
|
||||
INSERT INTO "sys_i18n" VALUES (205, 'dictData.noData', '没有可访问字典编码数据!', 'There is no accessible dictionary code data!');
|
||||
INSERT INTO "sys_i18n" VALUES (206, 'dictData.errLabelExists', '操作数据【{name}】失败,该字典类型下标签名已存在', 'Failed to manipulate data [{name}], tag name already exists under this dictionary type!');
|
||||
INSERT INTO "sys_i18n" VALUES (207, 'dictType.sys_user_sex', '用户性别', 'User Gender');
|
||||
INSERT INTO "sys_i18n" VALUES (208, 'dictType.sys_show_hide', '菜单状态', 'Menu Status');
|
||||
INSERT INTO "sys_i18n" VALUES (209, 'dictType.sys_normal_disable', '系统开关', 'System switches');
|
||||
INSERT INTO "sys_i18n" VALUES (210, 'dictType.sys_job_status', '任务状态', 'Task Status');
|
||||
INSERT INTO "sys_i18n" VALUES (211, 'dictType.sys_job_group', '任务分组', 'Task Grouping');
|
||||
INSERT INTO "sys_i18n" VALUES (212, 'dictType.sys_yes_no', '系统是否', 'System or not');
|
||||
INSERT INTO "sys_i18n" VALUES (213, 'dictType.sys_oper_type', '操作类型', 'Operation Type');
|
||||
INSERT INTO "sys_i18n" VALUES (214, 'dictType.sys_common_status', '系统状态', 'System Status');
|
||||
INSERT INTO "sys_i18n" VALUES (215, 'dictType.trace_type', '跟踪类型', 'Trace Types');
|
||||
INSERT INTO "sys_i18n" VALUES (216, 'menu.tools.ps', '进程运行程序', 'Process Running Program');
|
||||
INSERT INTO "sys_i18n" VALUES (217, 'dictType.alarm_status', '告警日志类型', 'Alarm Log Type');
|
||||
INSERT INTO "sys_i18n" VALUES (218, 'menu.tools.net', '进程网络连接', 'Process Net Connection');
|
||||
INSERT INTO "sys_i18n" VALUES (219, 'dictType.ne_version_status', '网元软件版本状态', 'Network element software version status');
|
||||
INSERT INTO "sys_i18n" VALUES (220, 'dictType.sys_user_sex_remark', '用户性别列表', 'User gender list');
|
||||
INSERT INTO "sys_i18n" VALUES (221, 'dictType.sys_show_hide_remark', '菜单状态列表', 'Menu Status List');
|
||||
INSERT INTO "sys_i18n" VALUES (222, 'dictType.sys_normal_disable_remark', '系统开关列表', 'System switch list');
|
||||
INSERT INTO "sys_i18n" VALUES (223, 'dictType.sys_job_status_remark', '任务状态列表', 'Task Status List');
|
||||
INSERT INTO "sys_i18n" VALUES (224, 'dictType.sys_job_group_remark', '任务分组列表', 'Task Grouping List');
|
||||
INSERT INTO "sys_i18n" VALUES (225, 'dictType.sys_yes_no_remark', '系统是否列表', 'System whether list');
|
||||
INSERT INTO "sys_i18n" VALUES (226, 'dictType.sys_oper_type_remark', '操作类型列表', 'Operation type list');
|
||||
INSERT INTO "sys_i18n" VALUES (227, 'dictType.sys_common_status_remark', '登录状态列表', 'Login Status List');
|
||||
INSERT INTO "sys_i18n" VALUES (228, 'dictType.trace_type_remark', '跟踪类型', 'Trace Types');
|
||||
INSERT INTO "sys_i18n" VALUES (229, 'dictType.alarm_status_remark', '告警日志状态类型', 'Alarm Log Status Type');
|
||||
INSERT INTO "sys_i18n" VALUES (230, 'menu.trace.tshark', '信令分析', 'Signaling Analysis');
|
||||
INSERT INTO "sys_i18n" VALUES (231, 'menu.trace.wireshark', '信令跟踪', 'Signaling Trace');
|
||||
INSERT INTO "sys_i18n" VALUES (232, 'dictType.ne_version_status_remark', '网元软件版本状态', 'Network element software version status');
|
||||
INSERT INTO "sys_i18n" VALUES (233, 'dictType.export.id', '字典编号', 'Dictionary Number');
|
||||
INSERT INTO "sys_i18n" VALUES (234, 'dictType.export.name', '字典名称', 'Dictionary Name');
|
||||
INSERT INTO "sys_i18n" VALUES (235, 'dictType.export.type', '字典类型', 'Dictionary Type');
|
||||
INSERT INTO "sys_i18n" VALUES (236, 'dictType.export.status', '字典状态', 'Status');
|
||||
INSERT INTO "sys_i18n" VALUES (237, 'dictType.sys_role_datascope', '系统角色数据范围', 'System Role Data Range');
|
||||
INSERT INTO "sys_i18n" VALUES (238, 'dictType.sys_role_datascope_remark', '系统角色数据范围映射', 'System Role Data Range Mapping');
|
||||
INSERT INTO "sys_i18n" VALUES (239, 'dictType.noData', '没有可访问字典类型数据!', 'There is no accessible dictionary type data!');
|
||||
INSERT INTO "sys_i18n" VALUES (240, 'dictType.errNameExists', '操作字典【{name}】失败,字典名称已存在', 'Failed to manipulate dictionary [{name}], dictionary name already exists!');
|
||||
INSERT INTO "sys_i18n" VALUES (241, 'dictType.errTypeExists', '操作字典【{name}】失败,字典类型已存在', 'Failed to manipulate dictionary [{name}], dictionary type already exists!');
|
||||
INSERT INTO "sys_i18n" VALUES (242, 'dept.root', '系统', 'System');
|
||||
INSERT INTO "sys_i18n" VALUES (243, 'dept.root.item1', '未分配', 'Unallocated');
|
||||
INSERT INTO "sys_i18n" VALUES (244, 'dept.noData', '没有可访问部门数据!', 'There is no accessible department data!');
|
||||
INSERT INTO "sys_i18n" VALUES (245, 'dept.errParentDelFlag', '上级部门【{name}】已删除,不允许新增', 'The parent department [{name}] has been deleted and is not allowed to be added.');
|
||||
INSERT INTO "sys_i18n" VALUES (246, 'dept.errParentStatus', '上级部门【{name}】停用,不允许新增', 'Parent department [{name}] is deactivated, additions are not allowed!');
|
||||
INSERT INTO "sys_i18n" VALUES (247, 'dept.errNameExists', '操作部门【{name}】失败,部门名称已存在', 'Manipulate department [{name}] failed, department name already exists!');
|
||||
INSERT INTO "sys_i18n" VALUES (248, 'dept.errParentID', '操作部门【{name}】失败,上级部门不能是自己', 'Failed to operate department [{name}], the parent department cannot be itself.');
|
||||
INSERT INTO "sys_i18n" VALUES (249, 'dept.errHasChildUse', '操作失败,该部门包含未停用的子部门数量:{num}', 'Operation failed, the department contains undeactivated sub-departments number: {num}');
|
||||
INSERT INTO "sys_i18n" VALUES (250, 'dept.errHasUserUse', '不允许删除,部门已分配给用户数:{num}', 'Deletion is not allowed, number of users the department has been assigned to: {num}');
|
||||
INSERT INTO "sys_i18n" VALUES (251, 'config.sys.user.initPassword', '用户管理-账号初始密码', 'User Management-Account Initial Password');
|
||||
INSERT INTO "sys_i18n" VALUES (252, 'config.sys.account.captchaEnabled', '账号自助-验证码开关', 'Account self-help-Certification code switch');
|
||||
INSERT INTO "sys_i18n" VALUES (253, 'config.sys.account.registerUser', '账号自助-是否开启用户注册功能', 'Account self-service-Whether to enable the user registration function');
|
||||
INSERT INTO "sys_i18n" VALUES (254, 'config.sys.user.maxRetryCount', '用户管理-密码最大错误次数', 'User Management-Maximum number of password errors');
|
||||
INSERT INTO "sys_i18n" VALUES (255, 'config.sys.user.lockTime', '用户管理-密码锁定时间', 'User Management-Password Lock Time');
|
||||
INSERT INTO "sys_i18n" VALUES (256, 'config.monitor.sysResource.storeDays', '监控-系统资源-数据保留时长', 'Monitor-System Resources-Data retention time');
|
||||
INSERT INTO "sys_i18n" VALUES (257, 'config.sys.logo.type', '系统设置-LOGO类型', 'System Settings-Logo Type');
|
||||
INSERT INTO "sys_i18n" VALUES (258, 'config.sys.logo.filePathIcon', '系统设置-LOGO文件icon', 'System Settings-Logo File icon');
|
||||
INSERT INTO "sys_i18n" VALUES (259, 'config.sys.logo.filePathBrand', '系统设置-LOGO文件brand', 'System Settings-Logo File Brand');
|
||||
INSERT INTO "sys_i18n" VALUES (260, 'config.sys.loginBackground', '系统设置-登录界面背景', 'System Settings-Login Interface Background');
|
||||
INSERT INTO "sys_i18n" VALUES (261, 'config.sys.title', '系统设置-系统名称', 'System Settings-System Name');
|
||||
INSERT INTO "sys_i18n" VALUES (262, 'config.sys.copyright', '系统设置-版权声明', 'System Settings-Copyright Notice');
|
||||
INSERT INTO "sys_i18n" VALUES (263, 'config.sys.user.initPasswordRemark', '导入用户初始化密码', 'Import user initialization password');
|
||||
INSERT INTO "sys_i18n" VALUES (264, 'config.sys.account.captchaEnabledRemark', '是否开启验证码功能(true开启,false关闭)', 'Whether to enable the verification code function (true on, false off)');
|
||||
INSERT INTO "sys_i18n" VALUES (265, 'config.sys.account.registerUserRemark', '是否开启注册用户功能(true开启,false关闭)', 'Whether to enable the function of registered users (true on, false off)');
|
||||
INSERT INTO "sys_i18n" VALUES (266, 'config.sys.user.maxRetryCountRemark', '密码最大错误次数', 'Maximum number of password errors');
|
||||
INSERT INTO "sys_i18n" VALUES (267, 'config.sys.user.lockTimeRemark', '密码锁定时间,单位分钟(默认10分钟)', 'Password lock time in minutes (default 10 minutes)');
|
||||
INSERT INTO "sys_i18n" VALUES (268, 'config.monitor.sysResource.storeDaysRemark', '监控-系统资源-数据保留时长,单位天。根据当前日期,删除超过保留时长的日期数据信息。', 'Monitor-System Resources-Data retention time, in days. According to the current date, delete the date data information that exceeds the retention time.');
|
||||
INSERT INTO "sys_i18n" VALUES (269, 'config.sys.logo.typeRemark', '全图:brand
|
||||
小图:icon', 'Full image: brand
|
||||
Small image: icon');
|
||||
INSERT INTO "sys_i18n" VALUES (270, 'config.sys.logo.filePathIconRemark', '文件支持网络地址图片和内部上传的文件路径', 'File support for web address images and file paths for internal uploads');
|
||||
INSERT INTO "sys_i18n" VALUES (271, 'config.sys.logo.filePathBrandRemark', '文件支持网络地址图片和内部上传的文件路径', 'File support for web address images and paths to internally uploaded files');
|
||||
INSERT INTO "sys_i18n" VALUES (272, 'config.sys.loginBackgroundRemark', '文件支持网络地址图片和内部上传的文件路径,默认背景用#号', 'The file supports web address images and internal upload file paths with a # in the default background');
|
||||
INSERT INTO "sys_i18n" VALUES (273, 'config.sys.titleRemark', '系统名称长度限制20位字符串', 'System name length limit of 20-digit string');
|
||||
INSERT INTO "sys_i18n" VALUES (274, 'config.sys.copyrightRemark', '底脚固定条,左侧放置版权声明', 'Footer fixing strip with copyright notice on the left side');
|
||||
INSERT INTO "sys_i18n" VALUES (275, 'config..export.id', '参数编号', 'ID');
|
||||
INSERT INTO "sys_i18n" VALUES (276, 'config..export.name', '参数名称', 'Config Name');
|
||||
INSERT INTO "sys_i18n" VALUES (277, 'config..export.key', '参数键名', 'Config Key');
|
||||
INSERT INTO "sys_i18n" VALUES (278, 'config..export.value', '参数键值', 'Config Value');
|
||||
INSERT INTO "sys_i18n" VALUES (279, 'config..export.type', '系统内置', 'Built In');
|
||||
INSERT INTO "sys_i18n" VALUES (280, 'config..export.remark', '参数说明', 'Config Description');
|
||||
INSERT INTO "sys_i18n" VALUES (281, 'config.sys.titleValue', '5G Core Network', '5G Core Network');
|
||||
INSERT INTO "sys_i18n" VALUES (282, 'config.sys.copyrightValue', 'Copyright ©2025 5G Core Network', 'Copyright ©2025 5G Core Network');
|
||||
INSERT INTO "sys_i18n" VALUES (283, 'config.noData', '没有可访问参数配置数据!', 'No parameter configuration data is accessible!');
|
||||
INSERT INTO "sys_i18n" VALUES (284, 'config.errKey', '无效 key', 'Invalid key');
|
||||
INSERT INTO "sys_i18n" VALUES (285, 'config.errValueEq', '变更状态与旧值相等!', 'Change state is equal to the old value!');
|
||||
INSERT INTO "sys_i18n" VALUES (286, 'config.errKeyExists', '操作参数配置【{name}】失败,参数键名已存在', 'Failed to manipulate parameter configuration [{name}], parameter key name already exists!');
|
||||
INSERT INTO "sys_i18n" VALUES (287, 'config.errDelete', '删除参数配置信息失败!', 'Deletion of parameter configuration information failed!');
|
||||
INSERT INTO "sys_i18n" VALUES (288, 'config.errType', '操作含有内置参数,禁止删除!', 'The operation contains built-in parameters and deletion is prohibited!');
|
||||
INSERT INTO "sys_i18n" VALUES (289, 'job.monitor_sys_resource', '监控-系统资源', 'Monitor-System Resources');
|
||||
INSERT INTO "sys_i18n" VALUES (290, 'job.monitor_sys_resource_remark', '系统资源CPU/IO/Netword收集
|
||||
interval单位分钟,平均分钟资源情况
|
||||
注:请根据cron表达式的时间单位分钟,传入参数interva值', 'System Resource CPU/IO/Netword Collection
|
||||
interval unit minutes, average minute resource situation
|
||||
Note: Please pass the value of the parameter interva according to the time unit minutes of the cron expression');
|
||||
INSERT INTO "sys_i18n" VALUES (291, 'job.delete_ne_config_backup', '删除-过期配置文件备份', 'Delete-Expired NE ETC Backup File');
|
||||
INSERT INTO "sys_i18n" VALUES (292, 'job.delete_ne_config_backup_remark', 'storeDays:表示保留最近天数的数据记录', 'storeDays: indicates that the most recent days of data records are kept.');
|
||||
INSERT INTO "sys_i18n" VALUES (293, 'job.delete_alarm_record', '删除-过期告警记录', 'Delete-Expired Alarm Records');
|
||||
INSERT INTO "sys_i18n" VALUES (294, 'job.delete_alarm_record_remark', 'storeDays:表示保留最近天数的数据记录
|
||||
storeNum:保留数量,默认保留7个', 'storeDays: indicates that the most recent days of data records are kept.
|
||||
storeNum: the number of reservations, the default reservation is 7.');
|
||||
INSERT INTO "sys_i18n" VALUES (295, 'job.delete_kpi_record', '删除-过期指标记录', 'Delete-Expired KPI Records');
|
||||
INSERT INTO "sys_i18n" VALUES (296, 'job.delete_kpi_record_remark', 'storeDays:表示保留最近天数的数据记录
|
||||
neList:表示匹配的网元类型', 'storeDays: Indicates the most recent days of data records retained
|
||||
neList: Indicates the type of network elements matched');
|
||||
INSERT INTO "sys_i18n" VALUES (297, 'menu.neData.backupData', '导出文件', 'Exponted File');
|
||||
INSERT INTO "sys_i18n" VALUES (298, 'config.sys.user.passwordPolicyNot', '未配置密码策略', 'Password policy not configured');
|
||||
INSERT INTO "sys_i18n" VALUES (299, 'job.export.jobID', '任务编号', 'ID');
|
||||
INSERT INTO "sys_i18n" VALUES (300, 'job.export.jobName', '任务名称', 'Name');
|
||||
INSERT INTO "sys_i18n" VALUES (301, 'job.export.jobGroupName', '任务组名', 'Group');
|
||||
INSERT INTO "sys_i18n" VALUES (302, 'job.export.invokeTarget', '调用目标', 'Invoke');
|
||||
INSERT INTO "sys_i18n" VALUES (303, 'job.export.targetParams', '传入参数', 'Incoming Parameters');
|
||||
INSERT INTO "sys_i18n" VALUES (304, 'job.export.cronExpression', 'cron表达式', 'Cron');
|
||||
INSERT INTO "sys_i18n" VALUES (305, 'job.export.status', '状态', 'Status');
|
||||
INSERT INTO "sys_i18n" VALUES (306, 'job.export.remark', '备注说明', 'Description');
|
||||
INSERT INTO "sys_i18n" VALUES (307, 'job.export.jobLogID', '任务日志编号', 'ID');
|
||||
INSERT INTO "sys_i18n" VALUES (308, 'job.export.jobLogStatus', '任务日志状态', 'Status');
|
||||
INSERT INTO "sys_i18n" VALUES (309, 'job.export.jobLogTime', '任务日志时间', 'Time');
|
||||
INSERT INTO "sys_i18n" VALUES (310, 'job.noData', '没有可访问调度任务数据!', 'There is no accessible scheduling task data!');
|
||||
INSERT INTO "sys_i18n" VALUES (311, 'job.errTargetParams', '操作调度任务【{name}】失败,任务传入参数json字符串不正确', 'Failed to operate scheduling task [{name}] with incorrect task incoming parameter json string!');
|
||||
INSERT INTO "sys_i18n" VALUES (312, 'job.errCronExpression', '操作调度任务【{name}】失败,Cron表达式不正确', 'Scheduled task [{name}] failed with incorrect Cron expression!');
|
||||
INSERT INTO "sys_i18n" VALUES (313, 'job.errJobExists', '调度任务新增【{name}】失败,同任务组内有相同任务名称', 'Failed to add a new task [{name}] to a scheduling task, same task name in the same task group');
|
||||
INSERT INTO "sys_i18n" VALUES (314, 'job.statusEq', '变更状态与旧值相等!', 'The change state is equal to the old value!');
|
||||
INSERT INTO "sys_i18n" VALUES (315, 'role.system', '系统', 'System');
|
||||
INSERT INTO "sys_i18n" VALUES (316, 'role.admin', '管理人员', 'Administrator');
|
||||
INSERT INTO "sys_i18n" VALUES (317, 'role.operator', '运维人员', 'Operators');
|
||||
INSERT INTO "sys_i18n" VALUES (318, 'role.monitor', '监控人员', 'Monitor');
|
||||
INSERT INTO "sys_i18n" VALUES (319, 'role.vistor', '普通用户', 'General Users');
|
||||
INSERT INTO "sys_i18n" VALUES (320, 'role.systemRemark', '系统,无法修改删除', 'System, cannot modify or delete');
|
||||
INSERT INTO "sys_i18n" VALUES (321, 'role.adminRemark', '管理人员 可以对设备进行任何操作', 'Administrators can perform any operation on the device');
|
||||
INSERT INTO "sys_i18n" VALUES (322, 'role.operatorRemark', '运维人员 可以从设备读取数据,并对设备进行配置,但是不能对设备进行软件升级操作。', 'Operation and maintenance personnel can read data from the device and configure the device, but cannot perform software upgrade operations on the device.');
|
||||
INSERT INTO "sys_i18n" VALUES (323, 'role.monitorRemark', '监控人员 只能从设备读取数据,而不能对设备进行任何设置', 'Monitoring personnel Can only read data from the device, but cannot make any settings on the device');
|
||||
INSERT INTO "sys_i18n" VALUES (324, 'role.vistorRemark', '普通用户 只可看系统相关信息', 'Ordinary users can only see system-related information');
|
||||
INSERT INTO "sys_i18n" VALUES (325, 'role.export.id', '角色编号', 'Role Number');
|
||||
INSERT INTO "sys_i18n" VALUES (326, 'role.export.name', '角色名称 ', 'Role Name');
|
||||
INSERT INTO "sys_i18n" VALUES (327, 'role.export.key', '角色键值', 'Role Key');
|
||||
INSERT INTO "sys_i18n" VALUES (328, 'role.export.sort', '角色顺序', 'Role Sort');
|
||||
INSERT INTO "sys_i18n" VALUES (329, 'role.export.dataScope', '角色数据范围', 'Role Data Range');
|
||||
INSERT INTO "sys_i18n" VALUES (330, 'role.export.status', '角色状态', 'Role Status');
|
||||
INSERT INTO "sys_i18n" VALUES (331, 'role.noData', '没有可访问角色数据!', 'There is no accessible role data!');
|
||||
INSERT INTO "sys_i18n" VALUES (332, 'role.statusEq', '变更状态与旧值相等!', 'The change status is equal to the old value!');
|
||||
INSERT INTO "sys_i18n" VALUES (333, 'role.errNameExists', '操作角色【{name}】失败,角色名称已存在', 'Manipulating role [{name}] failed, role name already exists!');
|
||||
INSERT INTO "sys_i18n" VALUES (334, 'role.errKeyExists', '操作角色【{name}】失败,角色键值已存在', 'Failed to manipulate role [{name}], role key already exists!');
|
||||
INSERT INTO "sys_i18n" VALUES (335, 'post.admin', '系统', 'Systems');
|
||||
INSERT INTO "sys_i18n" VALUES (336, 'post.operator', '管理', 'Management');
|
||||
INSERT INTO "sys_i18n" VALUES (337, 'post.monitor', '运维', 'Operation & Maintenance');
|
||||
INSERT INTO "sys_i18n" VALUES (338, 'post.visitor', '监控', 'Monitoring');
|
||||
INSERT INTO "sys_i18n" VALUES (339, 'post.export.id', '岗位编号 ', 'Position Number');
|
||||
INSERT INTO "sys_i18n" VALUES (340, 'post.export.code', '岗位编码', 'Position Code');
|
||||
INSERT INTO "sys_i18n" VALUES (341, 'post.export.name', '岗位名称', 'Position Name');
|
||||
INSERT INTO "sys_i18n" VALUES (342, 'post.export.sort', '岗位排序', 'Position Sort');
|
||||
INSERT INTO "sys_i18n" VALUES (343, 'post.export.status', '岗位状态', 'Position Status');
|
||||
INSERT INTO "sys_i18n" VALUES (344, 'post.noData', '没有可访问岗位数据!', 'There is no accessible post data!');
|
||||
INSERT INTO "sys_i18n" VALUES (345, 'post.errNameExists', '操作岗位【{name}】失败,岗位名称已存在已存在', 'Failed to manipulate post [{name}], post name already exists already exists');
|
||||
INSERT INTO "sys_i18n" VALUES (346, 'post.errCodeExists', '操作角色【{name}】失败,角色键值已存在', 'Failed to manipulate role [{name}], role key already exists.');
|
||||
INSERT INTO "sys_i18n" VALUES (347, 'user.export.id', '用户编号', 'User Number');
|
||||
INSERT INTO "sys_i18n" VALUES (348, 'user.export.name', '登录账号', 'Account');
|
||||
INSERT INTO "sys_i18n" VALUES (349, 'user.export.nick', '用户昵称', 'Nick Name');
|
||||
INSERT INTO "sys_i18n" VALUES (350, 'user.export.email', '电子邮箱', 'E-Mail');
|
||||
INSERT INTO "sys_i18n" VALUES (351, 'user.export.phone', '手机号码', 'Cell phone number');
|
||||
INSERT INTO "sys_i18n" VALUES (352, 'user.export.sex', '用户性别', 'Gender');
|
||||
INSERT INTO "sys_i18n" VALUES (353, 'user.export.status', '用户状态', 'Status');
|
||||
INSERT INTO "sys_i18n" VALUES (354, 'user.export.deptID', '部门编号', 'Department number');
|
||||
INSERT INTO "sys_i18n" VALUES (355, 'user.export.deptName', '部门名称', 'Department');
|
||||
INSERT INTO "sys_i18n" VALUES (356, 'user.export.deptLeader', '部门负责人', 'Department Head');
|
||||
INSERT INTO "sys_i18n" VALUES (357, 'user.export.loginIP', '用户登录IP', 'Login Address');
|
||||
INSERT INTO "sys_i18n" VALUES (358, 'user.export.loginDate', '用户登录时间', 'Login Time');
|
||||
INSERT INTO "sys_i18n" VALUES (359, 'user.noData', '没有可访问用户数据!', 'No accessible user data!');
|
||||
INSERT INTO "sys_i18n" VALUES (360, 'user.statusEq', '变更状态与旧值相等!', 'The change status is equal to the old value!');
|
||||
INSERT INTO "sys_i18n" VALUES (361, 'user.errPasswdOld', '修改密码失败,旧密码错误', 'Change password failed, old password is wrong');
|
||||
INSERT INTO "sys_i18n" VALUES (362, 'user.errPasswdEqOld', '新密码不能与旧密码相同', 'New password cannot be the same as the old one');
|
||||
INSERT INTO "sys_i18n" VALUES (363, 'config.sys.user.passwordPolicyError', '密码至少{minLength}位,至少包含{specialChars}个特殊字符和至少{uppercase}个大写字母和至少{lowercase}个小写字母', 'Passwords are at least {minLength} digits long and contain at least {specialChars} special characters and at least {uppercase} uppercase letter and at least {lowercase} lowercase letter.');
|
||||
INSERT INTO "sys_i18n" VALUES (364, 'user.errEmailFormat', '操作用户【{name}】失败,邮箱格式错误', 'Failed to operate user [{name}], mailbox format error');
|
||||
INSERT INTO "sys_i18n" VALUES (365, 'user.errEmailExists', '操作用户【{name}】失败,邮箱已存在', 'Failed to operate user [{name}], mailbox already exists.');
|
||||
INSERT INTO "sys_i18n" VALUES (366, 'user.errPhoneFormat', '操作用户【{name}】失败,手机号码格式错误', 'Failed to operate user [{name}], cell phone number format is wrong.');
|
||||
INSERT INTO "sys_i18n" VALUES (367, 'user.errPhoneExists', '操作用户【{name}】失败,手机号码已存在', 'Failed to operate user [{name}], cell phone number already exists.');
|
||||
INSERT INTO "sys_i18n" VALUES (368, 'user.errNameExists', '操作用户【{name}】失败,登录账号已存在', 'Failed to operate user [{name}], login account already exists.');
|
||||
INSERT INTO "sys_i18n" VALUES (369, 'user.import.mustItem', '表格中必填列表项,{text}', 'Required list item in form, {text}');
|
||||
INSERT INTO "sys_i18n" VALUES (370, 'user.import.phoneExist', '用户编号:{id} 手机号码 {phone} 已存在', 'User ID: {id} cell phone number {phone} Existing');
|
||||
INSERT INTO "sys_i18n" VALUES (371, 'user.import.phoneFormat', '用户编号:{id} 手机号码 {phone} 格式错误', 'User ID: {id} cell phone number {phone} Wrong format');
|
||||
INSERT INTO "sys_i18n" VALUES (372, 'user.import.emailExist', '用户编号:{id} 用户邮箱:{email} 已存在', 'User ID: {id} User Email: {email} Existing');
|
||||
INSERT INTO "sys_i18n" VALUES (373, 'user.import.emailFormat', '用户编号:{id} 用户邮箱:{email} 格式错误', 'User ID: {id} Email: {email} Wrong Format');
|
||||
INSERT INTO "sys_i18n" VALUES (374, 'user.import.success', '用户编号:{id} 登录名称:{name} 导入成功', 'User ID:{id} Login name:{name} Imported successfully!');
|
||||
INSERT INTO "sys_i18n" VALUES (375, 'user.import.fail', '用户编号:{id} 登录名称:{name} 导入失败', 'User ID: {id} Login name: {name} Import failed');
|
||||
INSERT INTO "sys_i18n" VALUES (376, 'user.import.successUpdate', '用户编号:{id} 登录名称:{name} 更新成功', 'User ID: {id} Login name: {name} Update success');
|
||||
INSERT INTO "sys_i18n" VALUES (377, 'user.import.failUpdate', '用户编号:{id} 登录名称:{name} 更新失败', 'User ID: {id} Login Name: {name} Update Failed');
|
||||
INSERT INTO "sys_i18n" VALUES (378, 'user.import.failTip', '很抱歉,导入失败!共 {num} 条数据格式不正确,错误如下:', 'Sorry, the import failed! A total of {num} entries were not formatted correctly, the error is below:');
|
||||
INSERT INTO "sys_i18n" VALUES (379, 'user.import.successTip', '恭喜您,数据已全部导入成功!共 {num} 条,数据如下:', 'Congratulations, the data has been imported successfully! There are {num} entries with the following data:');
|
||||
INSERT INTO "sys_i18n" VALUES (380, 'app.common.err403', '无权访问 {method} {requestURI}', 'Unauthorized access {method} {requestURI}');
|
||||
INSERT INTO "sys_i18n" VALUES (381, 'app.common.err401', '无效身份授权', 'Invalid authorization');
|
||||
INSERT INTO "sys_i18n" VALUES (382, 'app.common.err400', '参数错误', 'Parameter error');
|
||||
INSERT INTO "sys_i18n" VALUES (383, 'app.common.exportEmpty', '导出数据记录为空', 'Export data record is empty');
|
||||
INSERT INTO "sys_i18n" VALUES (384, 'app.common.errOperateAdmin', '不允许操作内置用户', 'Built-in users are not allowed to operate');
|
||||
INSERT INTO "sys_i18n" VALUES (385, 'app.common.errOperateRole', '不允许操作内置角色', 'Built-in roles are not allowed to be operated');
|
||||
INSERT INTO "sys_i18n" VALUES (386, 'app.common.deleteSuccess', '删除成功:{num}', 'Deleted successfully: {num}');
|
||||
INSERT INTO "sys_i18n" VALUES (387, 'app.common.loginSuccess', '登录成功', 'Login Success');
|
||||
INSERT INTO "sys_i18n" VALUES (388, 'app.common.logoutSuccess', '注销成功', 'Logout Successful');
|
||||
INSERT INTO "sys_i18n" VALUES (389, 'app.common.errUnlock', '该用户未被锁定', 'The user is not locked');
|
||||
INSERT INTO "sys_i18n" VALUES (390, 'app.common.noLoginUser', '登录用户信息无效', 'Invalid login user information');
|
||||
INSERT INTO "sys_i18n" VALUES (391, 'app.common.rateLimitTip', '访问过于频繁,请稍候再试', 'Access too often, please try again later');
|
||||
INSERT INTO "sys_i18n" VALUES (392, 'log.operate.export.id', '操作编号', 'Log ID');
|
||||
INSERT INTO "sys_i18n" VALUES (393, 'log.operate.export.title', '模块名称', 'Module Name');
|
||||
INSERT INTO "sys_i18n" VALUES (394, 'log.operate.export.businessType', '业务类型', 'Business Type');
|
||||
INSERT INTO "sys_i18n" VALUES (395, 'log.operate.export.method', '操作方法', 'Operation Method');
|
||||
INSERT INTO "sys_i18n" VALUES (396, 'log.operate.export.requestMethod', '请求方式 ', 'Request Method');
|
||||
INSERT INTO "sys_i18n" VALUES (397, 'log.operate.export.operatorType', '操作类型', 'Operation Type');
|
||||
INSERT INTO "sys_i18n" VALUES (398, 'log.operate.export.operName', '操作人员', 'Operator');
|
||||
INSERT INTO "sys_i18n" VALUES (399, 'log.operate.export.deptName', '操作人员部门名称', 'Operator Department Name');
|
||||
INSERT INTO "sys_i18n" VALUES (400, 'log.operate.export.url', '请求链接地址', 'Request URL');
|
||||
INSERT INTO "sys_i18n" VALUES (401, 'log.operate.export.ip', '请求主机 ', 'Request Host');
|
||||
INSERT INTO "sys_i18n" VALUES (402, 'log.operate.export.location', '请求地址', 'Request Address');
|
||||
INSERT INTO "sys_i18n" VALUES (403, 'log.operate.export.param', '请求参数', 'Request Parameters');
|
||||
INSERT INTO "sys_i18n" VALUES (404, 'log.operate.export.msg', '操作信息', 'Operation Information');
|
||||
INSERT INTO "sys_i18n" VALUES (405, 'log.operate.export.status', '操作状态', 'Status');
|
||||
INSERT INTO "sys_i18n" VALUES (406, 'log.operate.export.costTime', '消耗时间(毫秒)', 'Time Consumption (ms)');
|
||||
INSERT INTO "sys_i18n" VALUES (407, 'log.operate.export.operTime', '操作时间', 'Time');
|
||||
INSERT INTO "sys_i18n" VALUES (408, 'log.login.export.id', '记录编号', 'Log ID');
|
||||
INSERT INTO "sys_i18n" VALUES (409, 'log.login.export.userName', '登录账号', 'Login Account');
|
||||
INSERT INTO "sys_i18n" VALUES (410, 'log.login.export.status', '登录状态', 'Status');
|
||||
INSERT INTO "sys_i18n" VALUES (411, 'log.login.export.ip', '登录地址', 'Login Address');
|
||||
INSERT INTO "sys_i18n" VALUES (412, 'log.login.export.location', '登录地点', 'Login Location');
|
||||
INSERT INTO "sys_i18n" VALUES (413, 'log.login.export.browser', '浏览器', 'Browser');
|
||||
INSERT INTO "sys_i18n" VALUES (414, 'log.login.export.os', '操作系统', 'Operating System');
|
||||
INSERT INTO "sys_i18n" VALUES (415, 'log.login.export.msg', '登录信息', 'Login Information');
|
||||
INSERT INTO "sys_i18n" VALUES (416, 'log.login.export.time', '登录时间', 'Login Time');
|
||||
INSERT INTO "sys_i18n" VALUES (417, 'trace.tcpdump.noData', '找不到 {type} {id} 对应网元信息', 'Can it find {type} {id} information of the corresponding network element.');
|
||||
INSERT INTO "sys_i18n" VALUES (418, 'register.errUsername', '账号不能以数字开头,可包含大写小写字母,数字,且不少于5位', 'The account number cannot start with a number, but can contain upper and lower case letters, numbers, and not less than 5 digits.');
|
||||
INSERT INTO "sys_i18n" VALUES (419, 'login.errPasswdExpire', '登录密码已过期', 'Login password has expired');
|
||||
INSERT INTO "sys_i18n" VALUES (420, 'register.errPasswdNotEq', '用户确认输入密码不一致', 'User confirms password inconsistency');
|
||||
INSERT INTO "sys_i18n" VALUES (421, 'register.success', '注册成功', 'Successful registration');
|
||||
INSERT INTO "sys_i18n" VALUES (422, 'register.successMsg', '{name} 注册成功 {id}', '{name} Register Successful {id}');
|
||||
INSERT INTO "sys_i18n" VALUES (423, 'log.operate.title.sysJobLog', '调度任务日志', 'Scheduling Task Logs');
|
||||
INSERT INTO "sys_i18n" VALUES (424, 'log.operate.title.sysJob', '调度任务', 'Scheduling Tasks');
|
||||
INSERT INTO "sys_i18n" VALUES (425, 'log.operate.title.tcpdump', '信令抓包', 'Signaling Capture');
|
||||
INSERT INTO "sys_i18n" VALUES (426, 'log.operate.title.sysConfig', '参数配置', 'Parameter Configuration');
|
||||
INSERT INTO "sys_i18n" VALUES (427, 'log.operate.title.sysDept', '部门', 'Sector');
|
||||
INSERT INTO "sys_i18n" VALUES (428, 'log.operate.title.sysDictData', '字典数据', 'Dictionary Data');
|
||||
INSERT INTO "sys_i18n" VALUES (429, 'log.operate.title.sysDictType', '字典类型', 'Dictionary type');
|
||||
INSERT INTO "sys_i18n" VALUES (430, 'log.operate.title.sysMenu', '菜单', 'Menu');
|
||||
INSERT INTO "sys_i18n" VALUES (431, 'log.operate.title.sysPost', '岗位', 'Positions');
|
||||
INSERT INTO "sys_i18n" VALUES (432, 'log.operate.title.sysProfile', '个人信息', 'Personal Information');
|
||||
INSERT INTO "sys_i18n" VALUES (433, 'log.operate.title.sysProfileAvatar', '个人头像', 'Personal avatar');
|
||||
INSERT INTO "sys_i18n" VALUES (434, 'log.operate.title.sysRole', '角色', 'Roles');
|
||||
INSERT INTO "sys_i18n" VALUES (435, 'log.operate.title.sysUser', '用户', 'User');
|
||||
INSERT INTO "sys_i18n" VALUES (436, 'log.operate.title.sysLogOper', '操作日志记录', 'Operation Logging');
|
||||
INSERT INTO "sys_i18n" VALUES (437, 'log.operate.title.sysLogLogin', '登录日志记录', 'Operation Logging');
|
||||
INSERT INTO "sys_i18n" VALUES (438, 'login.errNameOrPasswd', '用户不存在或密码错误', 'User does not exist or password is wrong');
|
||||
INSERT INTO "sys_i18n" VALUES (439, 'login.errDelFlag', '对不起,您的账号已被删除', 'Sorry, your account has been deleted');
|
||||
INSERT INTO "sys_i18n" VALUES (440, 'login.errStatus', '对不起,您的帐户已被禁用', 'Sorry, your account has been disabled');
|
||||
INSERT INTO "sys_i18n" VALUES (441, 'login.errRetryPasswd', '密码输入错误多次,帐户已被锁定', 'Password was entered incorrectly several times, account has been locked');
|
||||
INSERT INTO "sys_i18n" VALUES (442, 'captcha.err', '验证码错误', 'Captcha Error');
|
||||
INSERT INTO "sys_i18n" VALUES (443, 'captcha.errValid', '验证码已失效', 'Captcha is invalid');
|
||||
INSERT INTO "sys_i18n" VALUES (444, 'app.common.noUaOsBrowser', '未知 未知', 'Unknown Unknown');
|
||||
INSERT INTO "sys_i18n" VALUES (445, 'app.common.noIPregion', '内网', 'Intranet');
|
||||
INSERT INTO "sys_i18n" VALUES (446, 'app.common.unknown', '未知', 'Unknown');
|
||||
INSERT INTO "sys_i18n" VALUES (447, 'app.common.noNEInfo', '未找到匹配网元信息', 'No matching network element information found');
|
||||
INSERT INTO "sys_i18n" VALUES (448, 'ne.udm.errImportUserAuthFileFormat', '请上传.csv或.txt的格式文件。英文逗号分割txt格式:imsi, ki, algo, amf, opc', 'Please upload a file in the format of. csv or. txt. English comma separated txt format: imsi, ki, algo, amf, opc');
|
||||
INSERT INTO "sys_i18n" VALUES (449, 'ne.udm.errExportType', '导出文件类型支持CSV和txt', 'Export file types support CSV and txt');
|
||||
INSERT INTO "sys_i18n" VALUES (450, 'ne.udm.errImportUserSubFileFormat', '请上传.csv或.txt的格式文件。英文逗号分割txt格式:imsi, msisdn, ambr, nssai, arfb, sar, rat, cn, smf_sel, sm_dat, eps_dat', 'Please upload files in .csv or .txt format. English comma-separated txt format: imsi, msisdn, ambr, nssai, arfb, sar, rat, cn, smf_sel, sm_dat, eps_dat');
|
||||
INSERT INTO "sys_i18n" VALUES (451, 'log.operate.title.udmAuth', 'UDM鉴权用户', 'UDM Authentication');
|
||||
INSERT INTO "sys_i18n" VALUES (452, 'log.operate.title.udmSub', 'UDM签约用户', 'UDM Subscriber');
|
||||
INSERT INTO "sys_i18n" VALUES (453, 'dictType.active_alarm_type', '活动告警类型', 'Event Alarm Types');
|
||||
INSERT INTO "sys_i18n" VALUES (454, 'dictType.active_alarm_type_remark', '活动告警类型列表', 'List of Active Alarm Types');
|
||||
INSERT INTO "sys_i18n" VALUES (455, 'dictData.active_alarm_type.communication', '通信告警', 'Communication Alarm');
|
||||
INSERT INTO "sys_i18n" VALUES (456, 'dictData.active_alarm_type.equipment', '设备告警', 'Equipment Alarm');
|
||||
INSERT INTO "sys_i18n" VALUES (457, 'dictData.active_alarm_type.processing', '处理错误', 'Processing Failure Alarm');
|
||||
INSERT INTO "sys_i18n" VALUES (458, 'dictData.active_alarm_type.environmental', '环境告警', 'Environmental Alarm');
|
||||
INSERT INTO "sys_i18n" VALUES (459, 'dictData.active_alarm_type.qualityOfService', '服务质量', 'Quality of Service Alarm');
|
||||
INSERT INTO "sys_i18n" VALUES (460, 'dictType.active_clear_type', '告警清除类型', 'Alarm Clearing Types');
|
||||
INSERT INTO "sys_i18n" VALUES (461, 'dictType.active_clear_type_remark', '告警清除类型列表', 'List of Alarm Clearing Types');
|
||||
INSERT INTO "sys_i18n" VALUES (462, 'dictData.active_clear_type.notCleared', '告警未清除', 'Not cleared');
|
||||
INSERT INTO "sys_i18n" VALUES (463, 'dictData.active_clear_type.hand', '手动清除', 'Manually cleared');
|
||||
INSERT INTO "sys_i18n" VALUES (464, 'dictData.active_clear_type.auto', '自动清除', 'Automatically cleared');
|
||||
INSERT INTO "sys_i18n" VALUES (465, 'dictType.active_ack_state', '告警确认类型', 'Alarm Acknowledgement Types');
|
||||
INSERT INTO "sys_i18n" VALUES (466, 'dictType.active_ack_state_remark', '告警确认类型列表', 'Alarm Acknowledgement Type List');
|
||||
INSERT INTO "sys_i18n" VALUES (467, 'dictData.active_ack_state.unconfirmed', '未确认', 'Not Confirm');
|
||||
INSERT INTO "sys_i18n" VALUES (468, 'dictData.active_ack_state.confirmed', '已确认', 'Confirm');
|
||||
INSERT INTO "sys_i18n" VALUES (469, 'dictType.active_alarm_severity', '严重程度', 'Severity');
|
||||
INSERT INTO "sys_i18n" VALUES (470, 'dictType.active_alarm_severity_remark', '严重程度列表', 'Severity List');
|
||||
INSERT INTO "sys_i18n" VALUES (471, 'dictData.active_alarm_severity.critical', '严重告警', 'Critical');
|
||||
INSERT INTO "sys_i18n" VALUES (472, 'dictData.active_alarm_severity.major', '主要告警', 'Major');
|
||||
INSERT INTO "sys_i18n" VALUES (473, 'dictData.active_alarm_severity.minor', '次要告警', 'Minor');
|
||||
INSERT INTO "sys_i18n" VALUES (474, 'dictData.active_alarm_severity.warning', '警告告警', 'Warning');
|
||||
INSERT INTO "sys_i18n" VALUES (475, 'dictData.active_alarm_severity.event', '事件告警', 'Event');
|
||||
INSERT INTO "sys_i18n" VALUES (476, 'config.sys.officialUrl', '系统设置-官网链接', 'System Settings - Official Website Links');
|
||||
INSERT INTO "sys_i18n" VALUES (477, 'config.sys.helpDoc', '系统设置-系统使用文档', 'System Settings-System Documentation');
|
||||
INSERT INTO "sys_i18n" VALUES (478, 'config.sys.officialUrlRemark', '默认无地址用#号', 'Default no address with # sign');
|
||||
INSERT INTO "sys_i18n" VALUES (479, 'config.sys.helpDocRemark', '静态文件目录地址,使用{language}区分语言文件', 'Static file directory address, use {language} to distinguish language files');
|
||||
INSERT INTO "sys_i18n" VALUES (480, 'log.operate.title.neAction', '网元处理', 'Network Element Processing');
|
||||
INSERT INTO "sys_i18n" VALUES (481, 'log.operate.title.helpDoc', '系统使用文档', 'System Usage Documentation');
|
||||
INSERT INTO "sys_i18n" VALUES (482, 'menu.ueUser.n3iwf', 'N3IWF在线用户', 'N3IWF Online User');
|
||||
INSERT INTO "sys_i18n" VALUES (483, 'menu.neData.pcfSub', '用户策略控制信息', 'User PCC Information');
|
||||
INSERT INTO "sys_i18n" VALUES (484, 'menu.system.user.editRole', '修改用户角色', 'Modifying User Role');
|
||||
INSERT INTO "sys_i18n" VALUES (485, 'config.sys.i18nOpen', '国际化切换', 'Internationalization Switching');
|
||||
INSERT INTO "sys_i18n" VALUES (486, 'config.sys.i18nDefault', '国际化默认语言', 'Internationalization Default Language');
|
||||
INSERT INTO "sys_i18n" VALUES (487, 'user.export.role', '用户角色', 'Role');
|
||||
INSERT INTO "sys_i18n" VALUES (488, 'menu.system.setting.i18n', '国际化切换', 'Internationalization Switch');
|
||||
INSERT INTO "sys_i18n" VALUES (489, 'menu.system.setting.i18nRemark', '国际化多语言的切换选择', 'Internationalized multilingual switching options');
|
||||
INSERT INTO "sys_i18n" VALUES (490, 'dictType.index_status', '首页状态', 'Home Status');
|
||||
INSERT INTO "sys_i18n" VALUES (491, 'dictType.index_status_remark', '首页的网元状态颜色', 'Network element status colors on the home page');
|
||||
INSERT INTO "sys_i18n" VALUES (492, 'dictType.index_status.normal', '正常', 'Normal');
|
||||
INSERT INTO "sys_i18n" VALUES (493, 'dictType.index_status.abnormal', '异常', 'Abnormal');
|
||||
INSERT INTO "sys_i18n" VALUES (494, 'menu.log.neFile', '网元日志文件', 'NE Log File');
|
||||
INSERT INTO "sys_i18n" VALUES (495, 'menu.dashboard.overview.smfUeNum', '展示数据会话数', 'Display data session number');
|
||||
INSERT INTO "sys_i18n" VALUES (496, 'menu.dashboard.overview.imsUeNum', '展示语音会话数', 'Display the number of voice sessions');
|
||||
INSERT INTO "sys_i18n" VALUES (497, 'menu.dashboard.overview.gnbBase', '展示5G基站在线信息', 'Display 5G base station online information');
|
||||
INSERT INTO "sys_i18n" VALUES (498, 'menu.dashboard.overview.enbBase', '展示4G基站在线信息', 'Display 4G base station online information');
|
||||
INSERT INTO "sys_i18n" VALUES (499, 'job.ne_alarm_state_check', '网元告警-状态检查', 'NE Alarm-Health State Check');
|
||||
INSERT INTO "sys_i18n" VALUES (500, 'job.ne_alarm_state_check_remark', '检查网元的健康状况,在出现异常时发出警报。
|
||||
|
||||
Alarm type:
|
||||
CommunicationAlarm=1
|
||||
EquipmentAlarm=2
|
||||
ProcessingFailure=3
|
||||
EnvironmentalAlarm=4
|
||||
QualityOfServiceAlarm=5
|
||||
|
||||
Severity:
|
||||
Critical=1
|
||||
Major=2
|
||||
Minor=3
|
||||
Warning=4', 'Checks the health of network elements and sends alerts in case of anomalies.
|
||||
|
||||
Alarm type:
|
||||
CommunicationAlarm=1
|
||||
EquipmentAlarm=2
|
||||
ProcessingFailure=3
|
||||
EnvironmentalAlarm=4
|
||||
QualityOfServiceAlarm=5
|
||||
|
||||
Severity:
|
||||
Critical=1
|
||||
Major=2
|
||||
Minor=3
|
||||
Warning=4');
|
||||
INSERT INTO "sys_i18n" VALUES (501, 'menu.neUser.nssf', 'NSSF在线订阅数', 'NSSF Subscription Info');
|
||||
INSERT INTO "sys_i18n" VALUES (502, 'menu.neUser.nssfAmf', 'NSSF可用的注册AMF', 'NSSF Available AMFs');
|
||||
INSERT INTO "sys_i18n" VALUES (503, 'menu.monitor.topology', '拓扑信息', 'Topology Info');
|
||||
INSERT INTO "sys_i18n" VALUES (504, 'menu.monitor.topologyBuild', '拓扑图组编辑', 'Topological Graph Build');
|
||||
INSERT INTO "sys_i18n" VALUES (505, 'log.operate.title.chartGraph', '拓扑图组', 'Topological Graph');
|
||||
INSERT INTO "sys_i18n" VALUES (506, 'menu.monitor.topologyArchitecture', '网元拓扑组网', 'NE System Topology');
|
||||
INSERT INTO "sys_i18n" VALUES (507, 'menu.alarm', '告警', 'Alarm');
|
||||
INSERT INTO "sys_i18n" VALUES (508, 'menu.topology', '拓扑', 'Topology');
|
||||
INSERT INTO "sys_i18n" VALUES (509, 'config.sys.lockTime', '系统设置-锁屏超时时长', 'System Settings - Screen Lock Timeout Duration');
|
||||
INSERT INTO "sys_i18n" VALUES (510, 'config.sys.lockTimeRemark', '无操作时锁屏超时时长,单位(秒)。0表示无锁屏超时', 'Timeout of lock screen when no operation, unit (sec), 0 means no timeout of lock screen');
|
||||
INSERT INTO "sys_i18n" VALUES (511, 'sys.account.captchaType', '账号自助-验证码类型', 'Account Self Service - Captcha Type');
|
||||
INSERT INTO "sys_i18n" VALUES (512, 'sys.account.captchaTypeRemark', '使用验证码类型(math数值计算,char字符验证)', 'Using CAPTCHA types (math numeric calculation, char character validation)');
|
||||
INSERT INTO "sys_i18n" VALUES (513, 'menu.dashboard', '仪表盘', 'Dashboard');
|
||||
INSERT INTO "sys_i18n" VALUES (514, 'menu.dashboard.overview', '总览', 'Overview');
|
||||
INSERT INTO "sys_i18n" VALUES (515, 'menu.dashboard.imsCDR', '语音话单', 'Voice CDR');
|
||||
INSERT INTO "sys_i18n" VALUES (516, 'dictType.cdr_sip_code', 'IMS-Voice-SIP响应代码类别类型', 'IMS-Voice-SIP Response Code Category Type');
|
||||
INSERT INTO "sys_i18n" VALUES (517, 'dictType.cdr_call_type', 'IMS-呼叫类型', 'IMS-Call Type');
|
||||
INSERT INTO "sys_i18n" VALUES (518, 'dictType.ue_auth_code', 'UE 事件认证代码类型', 'UE Event Authentication Code Type');
|
||||
INSERT INTO "sys_i18n" VALUES (519, 'dictType.ue_event_type', 'UE 事件类型', 'UE Event Type');
|
||||
INSERT INTO "sys_i18n" VALUES (520, 'dictData.cdr_sip_code.200', '200 正常通话', '200 OK');
|
||||
INSERT INTO "sys_i18n" VALUES (521, 'dictData.cdr_sip_code.403', '403 禁止访问', '403 Forbidden');
|
||||
INSERT INTO "sys_i18n" VALUES (522, 'dictData.cdr_sip_code.408', '408 请求超时', '408 Request Timeout');
|
||||
INSERT INTO "sys_i18n" VALUES (523, 'dictData.cdr_sip_code.500', '500 内部服务器错误', '500 Internal Server Error');
|
||||
INSERT INTO "sys_i18n" VALUES (524, 'dictData.cdr_call_type.audio', '语音', 'Voice');
|
||||
INSERT INTO "sys_i18n" VALUES (525, 'dictData.cdr_call_type.video', '视频', 'Video');
|
||||
INSERT INTO "sys_i18n" VALUES (526, 'dictData.ue_auth_code.200', '成功', 'Success');
|
||||
INSERT INTO "sys_i18n" VALUES (527, 'dictData.ue_auth_code.001', '网络失败', 'Network Failure');
|
||||
INSERT INTO "sys_i18n" VALUES (528, 'dictData.ue_auth_code.002', '接口失败', 'Interface Failure');
|
||||
INSERT INTO "sys_i18n" VALUES (529, 'dictData.ue_auth_code.003', 'MAC失败', 'MAC Failure');
|
||||
INSERT INTO "sys_i18n" VALUES (530, 'dictData.ue_auth_code.004', '同步失败', 'Synchronization failure');
|
||||
INSERT INTO "sys_i18n" VALUES (531, 'dictData.ue_auth_code.005', '不接受非5G认证', 'Non-5G Authentication Not Accepted');
|
||||
INSERT INTO "sys_i18n" VALUES (532, 'dictData.ue_auth_code.006', '响应失败', 'Response Failure');
|
||||
INSERT INTO "sys_i18n" VALUES (533, 'dictData.ue_auth_code.007', '未知', 'Unknown');
|
||||
INSERT INTO "sys_i18n" VALUES (534, 'dictData.ue_event_type.auth', '认证', 'Authentication');
|
||||
INSERT INTO "sys_i18n" VALUES (535, 'dictData.ue_event_type.detach', '注销', 'Detach');
|
||||
INSERT INTO "sys_i18n" VALUES (536, 'dictData.ue_event_type.state', 'CM状态', 'CM Status');
|
||||
INSERT INTO "sys_i18n" VALUES (537, 'dictType.ue_event_cm_state', 'UE 事件CM状态', 'UE Event CM Status');
|
||||
INSERT INTO "sys_i18n" VALUES (538, 'dictData.ue_event_cm_state.connected', '连接', 'Connected');
|
||||
INSERT INTO "sys_i18n" VALUES (539, 'dictData.ue_event_cm_state.idle', '空闲', 'Idle');
|
||||
INSERT INTO "sys_i18n" VALUES (540, 'dictData.ue_event_cm_state.inactive', '不活动', 'Inactive');
|
||||
INSERT INTO "sys_i18n" VALUES (541, 'dictData.cdr_sip_code.404', '404 找不到', '404 Not Found');
|
||||
INSERT INTO "sys_i18n" VALUES (542, 'dictData.cdr_sip_code.487', '487 请求已终止', '487 Request Terminated');
|
||||
INSERT INTO "sys_i18n" VALUES (543, 'dictData.cdr_sip_code.503', '503 服务不可用', '503 Service Unavailable');
|
||||
INSERT INTO "sys_i18n" VALUES (544, 'dictData.cdr_sip_code.504', '504 服务器超时', '504 Server Timeout');
|
||||
INSERT INTO "sys_i18n" VALUES (545, 'dictData.cdr_sip_code.603', '603 下降', '603 Decline');
|
||||
INSERT INTO "sys_i18n" VALUES (546, 'dictData.cdr_sip_code.606', '606 不可接受', '606 Not Acceptable');
|
||||
INSERT INTO "sys_i18n" VALUES (547, 'cache.name.token', '用户令牌', 'User Token');
|
||||
INSERT INTO "sys_i18n" VALUES (548, 'cache.name.sys_config', '参数管理', 'Parameters Management');
|
||||
INSERT INTO "sys_i18n" VALUES (549, 'cache.name.sys_dict', '字典管理', 'Dictionary Management');
|
||||
INSERT INTO "sys_i18n" VALUES (550, 'cache.name.captcha_codes', '验证码', 'Captcha');
|
||||
INSERT INTO "sys_i18n" VALUES (551, 'cache.name.repeat_submit', '防重提交', 'Resubmit');
|
||||
INSERT INTO "sys_i18n" VALUES (552, 'cache.name.rate_limit', '限流', 'Limit Traffic');
|
||||
INSERT INTO "sys_i18n" VALUES (553, 'cache.name.pwd_err_cnt', '登录账户密码错误次数', 'Number of Password Errors');
|
||||
INSERT INTO "sys_i18n" VALUES (554, 'cache.name.ne_info', '网元信息管理', 'NE Info Management');
|
||||
INSERT INTO "sys_i18n" VALUES (555, 'cache.name.ne_data', '网元数据管理', 'NE Data Management');
|
||||
INSERT INTO "sys_i18n" VALUES (556, 'dictData.cdr_call_type.sms', '短信', 'SMS');
|
||||
INSERT INTO "sys_i18n" VALUES (557, 'dictData.cdr_sip_code.202', '202 已接受', '202 Accepted');
|
||||
INSERT INTO "sys_i18n" VALUES (558, 'dictData.cdr_sip_code.488', '488 这里不接受', '488 Not Acceptable Here');
|
||||
INSERT INTO "sys_i18n" VALUES (559, 'dictData.cdr_sip_code.0', '0 原因不明', '0 Unknown Reason');
|
||||
INSERT INTO "sys_i18n" VALUES (560, 'log.operate.title.ws', 'WS会话', 'WS Sessions');
|
||||
INSERT INTO "sys_i18n" VALUES (561, 'log.operate.title.neHost', '网元主机', 'NE Host');
|
||||
INSERT INTO "sys_i18n" VALUES (562, 'neHost.noData', '没有可访问主机信息数据!', 'There is no accessible host information data!');
|
||||
INSERT INTO "sys_i18n" VALUES (563, 'neHost.errKeyExists', '主机信息操作【{name}】失败,同组内名称已存在', 'Host information operation [{name}] failed, name already exists in the same group');
|
||||
INSERT INTO "sys_i18n" VALUES (564, 'neHost.errByHostInfo', '连接失败,请检查连接参数后重试', 'Connection Failed, Please check connection parameters and retry');
|
||||
INSERT INTO "sys_i18n" VALUES (565, 'dictType.ne_host_type', '网元主机连接类型', 'Network element host connection type');
|
||||
INSERT INTO "sys_i18n" VALUES (566, 'dictType.ne_host_groupId', '网元主机分组', 'Network element host grouping');
|
||||
INSERT INTO "sys_i18n" VALUES (567, 'dictType.ne_host_authMode', '网元主机认证模式', 'Network element host authentication mode');
|
||||
INSERT INTO "sys_i18n" VALUES (568, 'dictData.ne_host_type.ssh', 'SSH', 'SSH');
|
||||
INSERT INTO "sys_i18n" VALUES (569, 'dictData.ne_host_type.telnet', 'Telnet', 'Telnet');
|
||||
INSERT INTO "sys_i18n" VALUES (570, 'dictData.ne_host_groupId.0', '其他', 'Other');
|
||||
INSERT INTO "sys_i18n" VALUES (571, 'dictData.ne_host_groupId.1', '网元', 'Network Elements');
|
||||
INSERT INTO "sys_i18n" VALUES (572, 'dictData.ne_host_groupId.2', '系统', 'System');
|
||||
INSERT INTO "sys_i18n" VALUES (573, 'dictData.ne_host_authMode.0', '密码认证', 'Password Authentication');
|
||||
INSERT INTO "sys_i18n" VALUES (574, 'dictData.ne_host_authMode.1', '私钥认证', 'Private key authentication');
|
||||
INSERT INTO "sys_i18n" VALUES (575, 'menu.tools.terminal', '主机终端', 'Host Terminal');
|
||||
INSERT INTO "sys_i18n" VALUES (576, 'menu.ne.neHost', '网元主机', 'NE Host');
|
||||
INSERT INTO "sys_i18n" VALUES (577, 'menu.ne.neHostCommand', '网元主机命令', 'NE Host CMD');
|
||||
INSERT INTO "sys_i18n" VALUES (578, 'log.operate.title.neHostCmd', '网元主机命令', 'NE Host CMD');
|
||||
INSERT INTO "sys_i18n" VALUES (579, 'neHostCmd.noData', '没有可访问主机命令数据!', 'No accessible host command data!');
|
||||
INSERT INTO "sys_i18n" VALUES (580, 'neHostCmd.errKeyExists', '主机命令操作【{name}】失败,同组内名称已存在', 'Host command operation [{name}] failed, name already exists in the same group');
|
||||
INSERT INTO "sys_i18n" VALUES (581, 'dictType.ne_host_cmd_groupId', '网元主机命令分组', 'Network element host command grouping');
|
||||
INSERT INTO "sys_i18n" VALUES (582, 'dictData.ne_host_cmd_groupId.0', '默认', 'Default');
|
||||
INSERT INTO "sys_i18n" VALUES (583, 'dictData.ne_host_cmd_groupId.1', '快速命令', 'Quick Commands');
|
||||
INSERT INTO "sys_i18n" VALUES (584, 'menu.ne.neInfo', '网元信息', 'NE Information');
|
||||
INSERT INTO "sys_i18n" VALUES (585, 'log.operate.title.neInfo', '网元信息', 'NE Information');
|
||||
INSERT INTO "sys_i18n" VALUES (586, 'neInfo.noData', '没有可访问网元信息数据!', 'There is no accessible network element information data!');
|
||||
INSERT INTO "sys_i18n" VALUES (587, 'neInfo.errKeyExists', '网元信息操作【{key}】失败,同类型下标识已存在', 'NE info operation [{key}] failed, identifier already exists under the same type');
|
||||
INSERT INTO "sys_i18n" VALUES (588, 'log.operate.title.imsCDR', '通话话单', 'Voice CDR');
|
||||
INSERT INTO "sys_i18n" VALUES (589, 'menu.dashboard.amfUE', '5G 终端事件', '5G UE Events');
|
||||
INSERT INTO "sys_i18n" VALUES (590, 'log.operate.title.amfUE', '5G 终端事件', '5G UE Events');
|
||||
INSERT INTO "sys_i18n" VALUES (591, 'dictData.ne_info_status.0', '离线', 'Offline');
|
||||
INSERT INTO "sys_i18n" VALUES (592, 'dictData.ne_info_status.1', '在线', 'Active');
|
||||
INSERT INTO "sys_i18n" VALUES (593, 'dictData.ne_info_status.2', '等待同步', 'Wait Sync');
|
||||
INSERT INTO "sys_i18n" VALUES (594, 'dictData.ne_info_status.3', '待机', 'Standby');
|
||||
INSERT INTO "sys_i18n" VALUES (595, 'dictType.ne_info_status', '网元信息状态', 'NE Info State');
|
||||
INSERT INTO "sys_i18n" VALUES (596, 'menu.ne.neQuickSetup', '网元快速安装', 'NE Quick Setup');
|
||||
INSERT INTO "sys_i18n" VALUES (597, 'log.operate.title.neConfig', '网元参数配置', 'NE Parameter Configuration');
|
||||
INSERT INTO "sys_i18n" VALUES (598, 'menu.ne.neLicense', '网元许可', 'NE License');
|
||||
INSERT INTO "sys_i18n" VALUES (599, 'log.operate.title.neLicense', '网元许可', 'NE License');
|
||||
INSERT INTO "sys_i18n" VALUES (600, 'menu.ne.neSoftware', '网元软件包', 'NE Software');
|
||||
INSERT INTO "sys_i18n" VALUES (601, 'log.operate.title.neSoftware', '网元软件包', 'NE Software');
|
||||
INSERT INTO "sys_i18n" VALUES (602, 'log.operate.title.neVersion', '网元版本', 'NE Version');
|
||||
INSERT INTO "sys_i18n" VALUES (603, 'menu.ne.neVersion', '网元版本', 'NE Version');
|
||||
INSERT INTO "sys_i18n" VALUES (604, 'dictType.ne_license_status', '网元许可状态', 'NE License Status');
|
||||
INSERT INTO "sys_i18n" VALUES (605, 'dictData.ne_license_status.0', '无效', 'Invalid');
|
||||
INSERT INTO "sys_i18n" VALUES (606, 'dictData.ne_license_status.1', '有效', 'Valid');
|
||||
INSERT INTO "sys_i18n" VALUES (607, 'menu.dashboard.mocn', 'MOCN', 'MOCN');
|
||||
INSERT INTO "sys_i18n" VALUES (608, 'menu.monitor.cdr', '话单', 'CDR');
|
||||
INSERT INTO "sys_i18n" VALUES (609, 'menu.monitor.event', '事件', 'Events');
|
||||
INSERT INTO "sys_i18n" VALUES (610, 'post.export.time', '创建时间', 'Creation Time');
|
||||
INSERT INTO "sys_i18n" VALUES (611, 'role.export.time', '创建时间', 'Creation Time');
|
||||
INSERT INTO "sys_i18n" VALUES (612, 'dictData.ne_host_authMode.2', '免密认证', 'Confidentiality Auth Mode');
|
||||
INSERT INTO "sys_i18n" VALUES (613, 'menu.ne.neConfig', '网元配置', 'NE Config');
|
||||
INSERT INTO "sys_i18n" VALUES (614, 'dictData.ne_version_status.0', '无', 'Nothing');
|
||||
INSERT INTO "sys_i18n" VALUES (615, 'dictData.ne_version_status.1', '已是最新', 'Updated');
|
||||
INSERT INTO "sys_i18n" VALUES (616, 'dictData.ne_version_status.2', '上一版本', 'Previous');
|
||||
INSERT INTO "sys_i18n" VALUES (617, 'dictData.ne_version_status.3', '有新版本', 'Has New');
|
||||
INSERT INTO "sys_i18n" VALUES (618, 'menu.fault.event', '事件通知', 'Event Notification');
|
||||
INSERT INTO "sys_i18n" VALUES (619, 'menu.dashboard.smfCDR', '数据话单', 'Data CDR');
|
||||
INSERT INTO "sys_i18n" VALUES (620, 'log.operate.title.smfCDR', '数据话单', 'Data CDR');
|
||||
INSERT INTO "sys_i18n" VALUES (621, 'config.sys.i18nDefaultRemark', '国际化默认语言可选择 en_US、zh_CN', 'Internationalization default language selectable en_US、zh_CN');
|
||||
INSERT INTO "sys_i18n" VALUES (622, 'config.sys.i18nOpenRemark', '是否显示切换的控件 true/false', 'Whether to display switched controls true/false');
|
||||
INSERT INTO "sys_i18n" VALUES (623, 'menu.dashboard.mmeUE', '4G 终端事件', '4G UE Events');
|
||||
INSERT INTO "sys_i18n" VALUES (624, 'log.operate.title.mmeUE', '4G 终端事件', '4G UE Events');
|
||||
INSERT INTO "sys_i18n" VALUES (625, 'menu.system.user.editPost', '修改用户岗位', 'Modify User Post');
|
||||
INSERT INTO "sys_i18n" VALUES (626, 'menu.dashboard.smscCDR', '短信话单', 'SMS CDR');
|
||||
INSERT INTO "sys_i18n" VALUES (627, 'log.operate.title.smscCDR', '短信话单', 'SMS CDR');
|
||||
INSERT INTO "sys_i18n" VALUES (628, 'menu.trace.pcapFile', '信令抓包文件', 'Signaling Capture File');
|
||||
INSERT INTO "sys_i18n" VALUES (629, 'menu.trace.taskAnalyze', '网元跟踪任务分析', 'NE Trace Task Analysis');
|
||||
INSERT INTO "sys_i18n" VALUES (630, 'job.ne_data_udm', '网元数据-UDM用户数据同步', 'NE Data-Sync UDM Data');
|
||||
INSERT INTO "sys_i18n" VALUES (631, 'menu.system.setting.doc', '系统使用文档', 'System User Documentation');
|
||||
INSERT INTO "sys_i18n" VALUES (632, 'menu.system.setting.official', '官网链接', 'Official Website');
|
||||
INSERT INTO "sys_i18n" VALUES (633, 'menu.system.setting.lock', '锁屏操作', 'Lockscreen Operation');
|
||||
INSERT INTO "sys_i18n" VALUES (634, 'menu.ne.neConfigBackup', '网元配置备份', 'NE Config Backups');
|
||||
INSERT INTO "sys_i18n" VALUES (635, 'job.ne_config_backup', '网元-配置文件定期备份', 'NE-Config Backup Regularly');
|
||||
INSERT INTO "sys_i18n" VALUES (636, 'job.ne_config_backup_remark', '网元配置文件定期备份到网管服务器
|
||||
可查看网元配置备份记录进行下载或通过网元信息操作导入配置', 'Network Element Configuration files are regularly backed up to the OMC
|
||||
View network element configuration backup records for downloading or importing configurations through network element information operations.');
|
||||
INSERT INTO "sys_i18n" VALUES (637, 'job.backup_export_table_sys_log_operate', '备份-操作日志表定期导出', 'Backup-Operation Log Table Periodic Export');
|
||||
INSERT INTO "sys_i18n" VALUES (638, 'job.backup_export_table_cdr_event_ims', '备份-语音话单表定期导出', 'Backup-Regular Export of voice bill forms');
|
||||
INSERT INTO "sys_i18n" VALUES (639, 'job.backup_export_table_cdr_event_smf', '备份-数据话单表定期导出', 'Backup-Regular Export of data sheet tables');
|
||||
INSERT INTO "sys_i18n" VALUES (640, 'cache.name.oauth2_codes', '客户端授权码', 'Oauth2 Client Code');
|
||||
INSERT INTO "sys_i18n" VALUES (641, 'cache.name.oauth2_devices', '客户端令牌', 'Oauth2 Token');
|
||||
INSERT INTO "sys_i18n" VALUES (644, 'menu.log.exportFile', '导出文件', 'Exported File');
|
||||
INSERT INTO "sys_i18n" VALUES (645, 'menu.perf.kpiCReport', '自定义指标数据', 'Custom Indicator Data');
|
||||
INSERT INTO "sys_i18n" VALUES (646, 'menu.trace.taskHLR', 'HLR 跟踪任务', 'HLR Trace Task');
|
||||
INSERT INTO "sys_i18n" VALUES (647, 'dictType.cdr_cause_code', 'CDR 响应原因代码类别类型', 'CDR Response Reason Code Category Type');
|
||||
INSERT INTO "sys_i18n" VALUES (648, 'dictData.cdr_cause_code.0', '未知错误', 'Unknown Error');
|
||||
INSERT INTO "sys_i18n" VALUES (649, 'dictData.cdr_cause_code.8', '运营者确定的禁止', 'Operator determined barring');
|
||||
INSERT INTO "sys_i18n" VALUES (650, 'dictData.cdr_cause_code.10', '禁止呼叫', 'Call Barred');
|
||||
INSERT INTO "sys_i18n" VALUES (651, 'dictData.cdr_cause_code.21', '呼叫被拒', 'Call rejected');
|
||||
INSERT INTO "sys_i18n" VALUES (652, 'dictData.cdr_cause_code.22', '数量已更改', 'Number changed');
|
||||
INSERT INTO "sys_i18n" VALUES (653, 'dictData.cdr_cause_code.27', '目的地出错', 'Destination out of order');
|
||||
INSERT INTO "sys_i18n" VALUES (654, 'dictData.cdr_cause_code.28', '数字格式无效(数字不完整)', 'Invalid number format (incomplete number)');
|
||||
INSERT INTO "sys_i18n" VALUES (655, 'dictData.cdr_cause_code.29', '设施被拒', 'Facility rejected');
|
||||
INSERT INTO "sys_i18n" VALUES (656, 'dictData.cdr_cause_code.30', '回复状态查询', 'Response to STATUS ENQUIRY');
|
||||
INSERT INTO "sys_i18n" VALUES (657, 'dictData.cdr_cause_code.38', '网络故障', 'Network out of order');
|
||||
INSERT INTO "sys_i18n" VALUES (658, 'dictData.cdr_cause_code.41', '临时故障', 'Temporary failure');
|
||||
INSERT INTO "sys_i18n" VALUES (659, 'dictData.cdr_cause_code.42', '交换设备拥塞', 'Switching equipment congestion');
|
||||
INSERT INTO "sys_i18n" VALUES (660, 'dictData.cdr_cause_code.47', '资源不可用', 'Resource unavailable, unspecified');
|
||||
INSERT INTO "sys_i18n" VALUES (661, 'dictData.cdr_cause_code.50', '请求的设施未订阅', 'Requested facility not subscribed');
|
||||
INSERT INTO "sys_i18n" VALUES (662, 'job.backup_export_table_cdr_event_smsc', '备份-短信话单表定期导出', 'Backup-Regular Export of SMS call list');
|
||||
INSERT INTO "sys_i18n" VALUES (663, 'job.backup_remove_file', '备份-定期删除备份目录下文件', 'Backup-Periodically Delete Directory Files');
|
||||
INSERT INTO "sys_i18n" VALUES (664, 'config.sys.homePage', '自定义主页', 'Custom Home Page');
|
||||
INSERT INTO "sys_i18n" VALUES (665, 'config.sys.homePageRemark', '选择列表中的任一页面作为主页路径', 'Select any page in the list as the homepage');
|
||||
INSERT INTO "sys_i18n" VALUES (666, 'menu.ne.neOverview', '网元概览', 'NE Overview');
|
||||
INSERT INTO "sys_i18n" VALUES (667, 'menu.ne.neOverviewRemark', '显示所有网元状态配置和license等概览信息', 'Displays overview information such as status, configuration and license of all network elements');
|
||||
INSERT INTO "sys_i18n" VALUES (668, 'job.backup_export_table_cdr_event_sgwc', '备份-漫游数据话单表定期导出', 'Backup-Regular Export of Roaming Data table');
|
||||
INSERT INTO "sys_i18n" VALUES (669, 'cache.name.i18n', '国际化语言管理', 'Internationalized Language Management');
|
||||
INSERT INTO "sys_i18n" VALUES (670, 'config.sys.user.passwordPolicy', '用户管理-默认密码策略强度', 'User Management-Default Password Policy Strength');
|
||||
INSERT INTO "sys_i18n" VALUES (671, 'config.sys.user.passwordPolicyRemark', 'minLength:密码至少8个字符
|
||||
specialChars:至少包含2个特殊字符(例如:!@#$%^&*())
|
||||
uppercase:至少包含一个大写字母
|
||||
lowercase:至少包含一个小写字母', 'minLength: password should be at least 8 characters long
|
||||
specialChars: at least 2 special characters (e.g. ! @#$%^&*())
|
||||
uppercase: contain at least one uppercase letter
|
||||
lowercase: contains at least one lowercase letter');
|
||||
INSERT INTO "sys_i18n" VALUES (672, 'config.sys.user.passwdExpire', '用户管理-密码有效期', 'User Management-Password Expiration Date');
|
||||
INSERT INTO "sys_i18n" VALUES (673, 'config.sys.user.passwdExpireRemark', '数值单位(小时)
|
||||
expHours为过期时间,0表示不启用
|
||||
alertHours即将到期提醒时间', 'Numerical unit (hours)
|
||||
expHours for the expiration time, 0 means not enabled
|
||||
alertHours upcoming expiration reminder time');
|
||||
INSERT INTO "sys_i18n" VALUES (674, 'config.sys.user.passwdNotAllowedHistory', '用户管理-不允许使用最近密码次数', 'User Management-Not Allowed Recent Passwords');
|
||||
INSERT INTO "sys_i18n" VALUES (675, 'config.sys.user.passwdNotAllowedHistoryRemark', '创建新密码不等于之前使用的x次中的密码', 'Creating a new password that is not equal to the previously used password in x times');
|
||||
INSERT INTO "sys_i18n" VALUES (676, 'login.errPasswdHistory', '不允许使用最近密码', 'Recent passwords not allowed');
|
||||
INSERT INTO "sys_i18n" VALUES (677, 'log.operate.title.oauth2client', 'Oauth2客户端授权', 'Oauth2 Client Authorization');
|
||||
INSERT INTO "sys_i18n" VALUES (679, 'dictType.trace_msg_type', '跟踪消息类型', 'Trace Message Type');
|
||||
INSERT INTO "sys_i18n" VALUES (680, 'dictData.trace_msg_type.0', '请求', 'Request');
|
||||
INSERT INTO "sys_i18n" VALUES (681, 'dictData.trace_msg_type.1', '响应', 'Response');
|
||||
INSERT INTO "sys_i18n" VALUES (682, 'dictType.trace_msg_direct', '跟踪消息方向', 'Track Message Direction');
|
||||
INSERT INTO "sys_i18n" VALUES (683, 'dictData.trace_msg_direct.0', '接收', 'Receive');
|
||||
INSERT INTO "sys_i18n" VALUES (684, 'dictData.trace_msg_direct.1', '发送', 'Send');
|
||||
INSERT INTO "sys_i18n" VALUES (685, 'dictData.trace_interfaces.1', 'N1', 'N1');
|
||||
INSERT INTO "sys_i18n" VALUES (686, 'dictData.trace_interfaces.2', 'N2', 'N2');
|
||||
INSERT INTO "sys_i18n" VALUES (687, 'dictData.trace_interfaces.3', 'N1/N2', 'N1/N2');
|
||||
INSERT INTO "sys_i18n" VALUES (688, 'dictData.trace_interfaces.4', 'N4', 'N4');
|
||||
INSERT INTO "sys_i18n" VALUES (689, 'dictData.trace_interfaces.8', 'N8', 'N8');
|
||||
INSERT INTO "sys_i18n" VALUES (690, 'dictData.trace_interfaces.10', 'N10', 'N10');
|
||||
INSERT INTO "sys_i18n" VALUES (691, 'dictData.trace_interfaces.11', 'N11', 'N11');
|
||||
INSERT INTO "sys_i18n" VALUES (692, 'dictData.trace_interfaces.12', 'N12', 'N12');
|
||||
INSERT INTO "sys_i18n" VALUES (693, 'dictData.trace_interfaces.13', 'N13', 'N13');
|
||||
INSERT INTO "sys_i18n" VALUES (694, 'dictData.trace_interfaces.7', 'N7', 'N7');
|
||||
INSERT INTO "sys_i18n" VALUES (695, 'dictData.trace_interfaces.15', 'N15', 'N15');
|
||||
INSERT INTO "sys_i18n" VALUES (696, 'dictData.trace_interfaces.17', 'N17', 'N17');
|
||||
INSERT INTO "sys_i18n" VALUES (697, 'dictData.trace_interfaces.20', 'N20', 'N20');
|
||||
INSERT INTO "sys_i18n" VALUES (698, 'dictData.trace_interfaces.22', 'N22', 'N22');
|
||||
INSERT INTO "sys_i18n" VALUES (699, 'dictData.trace_interfaces.40', 'N40', 'N40');
|
||||
INSERT INTO "sys_i18n" VALUES (700, 'dictData.cdr_sip_code.302', '302 原因不明', '302 Unknown Reason');
|
||||
INSERT INTO "sys_i18n" VALUES (701, 'dictData.cdr_sip_code.402', '402 原因不明', '402 Unknown Reason');
|
||||
INSERT INTO "sys_i18n" VALUES (702, 'dictData.cdr_sip_code.480', '480 被叫挂断/拒接', '480 Temporarily Unavailable');
|
||||
INSERT INTO "sys_i18n" VALUES (703, 'dictData.cdr_sip_code.481', '481 原因不明', '481 Unknown Reason');
|
||||
INSERT INTO "sys_i18n" VALUES (704, 'dictData.cdr_sip_code.482', '482 发现环路', '482 Loop Detected');
|
||||
INSERT INTO "sys_i18n" VALUES (705, 'dictData.cdr_sip_code.486', '486 这里很忙', '486 Busy Here');
|
||||
INSERT INTO "sys_i18n" VALUES (706, 'dictData.cdr_sip_code.489', '489 原因不明', '489 Unknown Reason');
|
||||
INSERT INTO "sys_i18n" VALUES (707, 'dictData.cdr_sip_code.580', '580 原因不明', '580 Unknown Reason');
|
||||
INSERT INTO "sys_i18n" VALUES (708, 'alarm.export.alarmType', '告警类型', 'Alarm Type');
|
||||
INSERT INTO "sys_i18n" VALUES (709, 'alarm.export.origSeverity', '告警级别', 'Severity');
|
||||
INSERT INTO "sys_i18n" VALUES (710, 'alarm.export.alarmTitle', '告警标题', 'Alarm Title');
|
||||
INSERT INTO "sys_i18n" VALUES (711, 'alarm.export.eventTime', '告警产生时间', 'Event Time');
|
||||
INSERT INTO "sys_i18n" VALUES (712, 'alarm.export.alarmId', '告警唯一标识', 'Alarm ID');
|
||||
INSERT INTO "sys_i18n" VALUES (713, 'alarm.export.clearUser', '告警清除用户', 'Clear User');
|
||||
INSERT INTO "sys_i18n" VALUES (714, 'alarm.export.clearType', '告警清除类型', 'Clear Type');
|
||||
INSERT INTO "sys_i18n" VALUES (715, 'alarm.export.clearTime', '告警清除时间', 'Clear Time');
|
||||
INSERT INTO "sys_i18n" VALUES (716, 'log.operate.title.alarm', '告警', 'Alarm');
|
||||
INSERT INTO "sys_i18n" VALUES (717, 'ne.common.neType', '网元类型', 'NE Type');
|
||||
INSERT INTO "sys_i18n" VALUES (718, 'ne.common.neName', '网元名称', 'NE Name');
|
||||
INSERT INTO "sys_i18n" VALUES (719, 'ne.common.neId', '网元标识', 'NE ID');
|
||||
INSERT INTO "sys_i18n" VALUES (720, 'log.operate.title.udmVOIP', 'VOIP用户', 'UDM VOIP');
|
||||
INSERT INTO "sys_i18n" VALUES (721, 'log.operate.title.udmVolteIMS', 'VolteIMS用户', 'UDM VolteIMS');
|
||||
INSERT INTO "sys_i18n" VALUES (722, 'log.operate.title.backup', '备份', 'Backup');
|
||||
INSERT INTO "sys_i18n" VALUES (723, 'job.backup_export_table_cdr_event_smsc_remark', 'hour: 数据时间从任务执行时间前的小时数
|
||||
tableName: 数据表名
|
||||
columns: 支持字段
|
||||
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
|
||||
tableName: data table name
|
||||
columns: support fields
|
||||
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
|
||||
INSERT INTO "sys_i18n" VALUES (724, 'job.backup_export_table_cdr_event_sgwc_remark', 'hour: 数据时间从任务执行时间前的小时数
|
||||
tableName: 数据表名
|
||||
columns: 支持字段
|
||||
backupPath: 备份输出路径 /usr/local/omc/backup/{backupPath}', 'hour: data time from the hour before the task execution time
|
||||
tableName: data table name
|
||||
columns: support fields
|
||||
backupPath: backup output path /usr/local/omc/backup/{backupPath}');
|
||||
INSERT INTO "sys_i18n" VALUES (725, 'job.backup_remove_file_remark', 'backupPath: 备份路径 /usr/local/omc/backup/{backupPath}
|
||||
storeDays: 保留天数
|
||||
storeNum: 保留数量,默认保留7', 'backupPath: backup path /usr/local/omc/backup/{backupPath}
|
||||
storeDays: retention days
|
||||
storeNum: retention number, default retention 7');
|
||||
INSERT INTO "sys_i18n" VALUES (726, 'job.backup_export_udm', '备份-UDM数据定期导出', 'Backup-Periodic export of UDM Data');
|
||||
INSERT INTO "sys_i18n" VALUES (727, 'job.backup_export_udm_remark', 'dataType: 类型支持 auth/sub/voip/volte
|
||||
fileType: 文件类型 csv/txt', 'Backup-Periodic export of dataType: type support auth/sub/voip/volte
|
||||
fileType: file type csv/txtUDM Data');
|
||||
INSERT INTO "sys_i18n" VALUES (728, 'dictData.cdr_sip_code_cause.0', '因其他原因呼叫失败', 'Call failure for other reason');
|
||||
INSERT INTO "sys_i18n" VALUES (729, 'dictData.cdr_sip_code_cause.200', '正常通话清除', 'Normal Call Clearing');
|
||||
INSERT INTO "sys_i18n" VALUES (730, 'dictData.cdr_sip_code_cause.202', '申请已被接受处理,但尚未完成 ', 'The request has been accepted for processing, but it hasn it completed yet');
|
||||
INSERT INTO "sys_i18n" VALUES (731, 'dictData.cdr_sip_code_cause.302', '因其他原因呼叫失败', 'Call failure for other reason');
|
||||
INSERT INTO "sys_i18n" VALUES (732, 'dictData.cdr_sip_code_cause.402', '因其他原因呼叫失败', 'Call failure for other reason');
|
||||
INSERT INTO "sys_i18n" VALUES (733, 'dictData.cdr_sip_code_cause.403', '拒绝 MO 用户', 'MO User Rejected');
|
||||
INSERT INTO "sys_i18n" VALUES (734, 'dictData.cdr_sip_code_cause.404', 'MT 用户离线', 'MT User Offline');
|
||||
INSERT INTO "sys_i18n" VALUES (735, 'dictData.cdr_sip_code_cause.480', '因其他原因呼叫失败', 'Call failure for other reason');
|
||||
INSERT INTO "sys_i18n" VALUES (736, 'dictData.cdr_sip_code_cause.481', '电话无法拨出', 'Call cannot be dialed');
|
||||
INSERT INTO "sys_i18n" VALUES (737, 'dictData.cdr_sip_code_cause.482', '闪断', 'Flashback');
|
||||
INSERT INTO "sys_i18n" VALUES (738, 'dictData.cdr_sip_code_cause.486', 'MT 用户忙', 'MT User Busy');
|
||||
INSERT INTO "sys_i18n" VALUES (739, 'dictData.cdr_sip_code_cause.487', 'MO 用户断线', 'MO User Disconnected');
|
||||
INSERT INTO "sys_i18n" VALUES (740, 'dictData.cdr_sip_code_cause.408', '服务器等待响应的时间过长', 'The server waits too long for a response');
|
||||
INSERT INTO "sys_i18n" VALUES (741, 'dictData.cdr_sip_code_cause.488', '媒体详细信息与服务器支持的内容不匹配', 'Media details didn’t match what the server supports');
|
||||
INSERT INTO "sys_i18n" VALUES (742, 'dictData.cdr_sip_code_cause.489', '因其他原因呼叫失败', 'Call failure for other reason');
|
||||
INSERT INTO "sys_i18n" VALUES (743, 'dictData.cdr_sip_code_cause.500', '服务器本身出了问题', 'Something went wrong inside the server itself');
|
||||
INSERT INTO "sys_i18n" VALUES (744, 'dictData.cdr_sip_code_cause.503', '服务器超载或因维护而停机,无法处理呼叫', 'The server is overloaded or down for maintenance and can it process the call');
|
||||
INSERT INTO "sys_i18n" VALUES (745, 'dictData.cdr_sip_code_cause.504', '服务器尝试以您的名义与另一台服务器通信,但未及时收到回复,并超时了', 'The server tried to talk to another server on your behalf, didn’t get a reply in time, and timed out');
|
||||
INSERT INTO "sys_i18n" VALUES (746, 'dictData.cdr_sip_code_cause.580', '因其他原因呼叫失败', 'Call failure for other reason');
|
||||
INSERT INTO "sys_i18n" VALUES (747, 'dictData.cdr_sip_code_cause.603', 'MT 明确拒绝通话', 'MT explicitly rejected the call');
|
||||
INSERT INTO "sys_i18n" VALUES (748, 'dictData.cdr_sip_code_cause.606', '呼叫已到达用户设备,但会话设置的某些部分不可接受', 'The call reached the user’s device, but some parts of the session setup weren it acceptable');
|
||||
INSERT INTO "sys_i18n" VALUES (749, 'dictType.cdr_sip_code_cause', 'IMS-Voice-SIP响应代码类别类型原因', 'IMS-Voice-SIP Response Code Category Type Cause');
|
||||
49
build/database/lite/install/sys_job.sql
Normal file
49
build/database/lite/install/sys_job.sql
Normal file
@@ -0,0 +1,49 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_job
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_job";
|
||||
CREATE TABLE "sys_job" (
|
||||
"job_id" integer NOT NULL,
|
||||
"job_name" text(64),
|
||||
"job_group" text(64),
|
||||
"invoke_target" text(64) NOT NULL,
|
||||
"target_params" text(2048),
|
||||
"cron_expression" text(64),
|
||||
"misfire_policy" text(1),
|
||||
"concurrent" text(1),
|
||||
"status_flag" text(1),
|
||||
"save_log" text(1),
|
||||
"create_by" text(64),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(64),
|
||||
"update_time" integer(20),
|
||||
"remark" text(500),
|
||||
PRIMARY KEY ("job_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table sys_job
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_name_group"
|
||||
ON "sys_job" (
|
||||
"job_name" ASC,
|
||||
"job_group" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_job
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_job" VALUES (1, 'job.monitor_sys_resource', 'SYSTEM', 'monitor_sys_resource', '{"interval":5}', '0 0/5 * * * ?', '3', '0', '1', '0', 'system', 1698478134839, 'system', 1698478134839, 'job.monitor_sys_resource_remark');
|
||||
INSERT INTO "sys_job" VALUES (2, 'job.ne_config_backup', 'SYSTEM', 'ne_config_backup', '', '0 30 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.ne_config_backup_remark');
|
||||
INSERT INTO "sys_job" VALUES (3, 'job.ne_data_udm', 'SYSTEM', 'ne_data_udm', '', '0 0 0/12 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, '');
|
||||
INSERT INTO "sys_job" VALUES (4, 'job.ne_alarm_state_check', 'SYSTEM', 'ne_alarm_state_check', '{"alarmTitle":"NE State Check Alarm","alarmType":"2","origSeverity":"2","specificProblem":"alarm cause: the system state of target NE has not been received","specificProblemId":"AC10000","addInfo":""}', '0/30 * * * * ?', '3', '0', '1', '0', 'system', 1698478134839, 'system', 1698478134839, 'job.ne_alarm_state_check_remark');
|
||||
INSERT INTO "sys_job" VALUES (5, 'job.delete_alarm_record', 'SYSTEM', 'delete_alarm_record', '{"storeDays":7}', '0 10 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.delete_alarm_record_remark');
|
||||
INSERT INTO "sys_job" VALUES (6, 'job.delete_kpi_record', 'SYSTEM', 'delete_kpi_record', '{"storeDays":7,"neList":["IMS","AMF","UDM","UPF","MME","SMSC","SMF","MME"]}', '0 20 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.delete_kpi_record_remark');
|
||||
INSERT INTO "sys_job" VALUES (7, 'job.delete_ne_config_backup', 'SYSTEM', 'delete_ne_config_backup', '{"storeDays":7,"storeNum":7}', '0 20 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.delete_ne_config_backup_remark');
|
||||
INSERT INTO "sys_job" VALUES (21, 'job.backup_export_table_sys_log_operate', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["id","title","business_type","opera_by","opera_url_method","opera_url","opera_ip","status","opera_time","cost_time"],"tableName":"sys_log_operate","backupPath":"/log/operate_log"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_sys_log_operate_remark');
|
||||
INSERT INTO "sys_job" VALUES (22, 'job.backup_export_table_cdr_event_ims', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["id","record_type","call_type","caller_party","called_party","call_duration","cause","seizure_time","release_time"],"tableName":"cdr_event_ims","backupPath":"/cdr/ims_cdr"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_cdr_event_ims_remark');
|
||||
INSERT INTO "sys_job" VALUES (23, 'job.backup_export_table_cdr_event_smf', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["id","charging_id","subscription_id_data","subscription_id_type","data_volume_uplink","data_volume_downlink","data_total_volume","invocation_timestamp","user_identifier","ssc_mode","dnn_id","pdu_type","rat_type","pdu_ipv4","pdu_ipv6","network_function_ipv4_address","record_nfId","record_type","record_opening_time"],"tableName":"cdr_event_smf","backupPath":"/cdr/smf_cdr"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_cdr_event_smf_remark');
|
||||
INSERT INTO "sys_job" VALUES (24, 'job.backup_export_table_cdr_event_smsc', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["id","record_type","service_type","caller_party","called_party","result","update_time"],"tableName":"cdr_event_smsc","backupPath":"/cdr/smsc_cdr"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_cdr_event_smsc_remark');
|
||||
INSERT INTO "sys_job" VALUES (25, 'job.backup_export_table_cdr_event_sgwc', 'SYSTEM', 'backup_export_table', '{"hour":1,"columns":["charging_id","served_imsi","served_msisdn","data_volume_gprs_uplink","data_volume_gprs_downlink","duration","invocation_timestamp","pgw_address_used","sgw_address","rat_type","pdp_pdn_type","served_pdppdn_address","serving_node_address","serving_node_type","access_point_name_ni","cause_for_rec_closing","record_sequence_number","local_record_sequence_number","record_type","record_opening_time"],"tableName":"cdr_event_sgwc","backupPath":"/cdr/sgwc_cdr"}', '0 0 0/1 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_export_table_cdr_event_sgwc_remark');
|
||||
INSERT INTO "sys_job" VALUES (26, 'job.backup_remove_file', 'SYSTEM', 'backup_remove_file', '[{"backupPath":"/log/operate_log","storeDays":30,"storeNum":7},{"backupPath":"/cdr/ims_cdr","storeDays":30},{"backupPath":"/cdr/smf_cdr","storeDays":30},{"backupPath":"/cdr/smsc_cdr","storeDays":30},{"backupPath":"/cdr/sgwc_cdr","storeDays":30},{"backupPath":"/udm_data/auth","storeDays":30},{"backupPath":"/udm_data/sub","storeDays":30},{"backupPath":"/udm_data/voip","storeDays":30},{"backupPath":"/udm_data/volte","storeDays":30}]', '0 10 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'system', 1698478134839, 'job.backup_remove_file_remark');
|
||||
INSERT INTO "sys_job" VALUES (27, 'job.backup_export_udm', 'SYSTEM', 'backup_export_udm', '{"dataType":["auth","sub","voip","volte"],"fileType":"txt"}', '0 35 0 * * ?', '3', '0', '1', '1', 'system', 1698478134839, 'supervisor', 1745481169354, 'job.backup_export_udm_remark');
|
||||
20
build/database/lite/install/sys_job_log.sql
Normal file
20
build/database/lite/install/sys_job_log.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_job_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_job_log";
|
||||
CREATE TABLE "sys_job_log" (
|
||||
"log_id" integer NOT NULL,
|
||||
"job_name" text(64) NOT NULL,
|
||||
"job_group" text(64) NOT NULL,
|
||||
"invoke_target" text(64) NOT NULL,
|
||||
"target_params" text(2048),
|
||||
"job_msg" text(500),
|
||||
"status_flag" text(1),
|
||||
"create_time" integer(20),
|
||||
"cost_time" integer(20),
|
||||
PRIMARY KEY ("log_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_job_log
|
||||
-- ----------------------------
|
||||
29
build/database/lite/install/sys_log_login.sql
Normal file
29
build/database/lite/install/sys_log_login.sql
Normal file
@@ -0,0 +1,29 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_log_login
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_log_login";
|
||||
CREATE TABLE "sys_log_login" (
|
||||
"id" integer NOT NULL,
|
||||
"user_name" text(32),
|
||||
"login_ip" text(128),
|
||||
"login_location" text(128),
|
||||
"browser" text(64),
|
||||
"os" text(64),
|
||||
"status_flag" text(1),
|
||||
"msg" text(2048),
|
||||
"login_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table sys_job_log
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_name_group"
|
||||
ON "sys_job_log" (
|
||||
"job_name" ASC,
|
||||
"job_group" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_log_login
|
||||
-- ----------------------------
|
||||
25
build/database/lite/install/sys_log_operate.sql
Normal file
25
build/database/lite/install/sys_log_operate.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_log_operate
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_log_operate";
|
||||
CREATE TABLE "sys_log_operate" (
|
||||
"id" integer NOT NULL,
|
||||
"title" text(64),
|
||||
"business_type" text(1),
|
||||
"opera_url" text(200),
|
||||
"opera_url_method" text(10),
|
||||
"opera_ip" text(128),
|
||||
"opera_location" text(128),
|
||||
"opera_param" text(2000),
|
||||
"opera_msg" text(2000),
|
||||
"opera_method" text(128),
|
||||
"opera_by" text(64),
|
||||
"opera_time" integer(20),
|
||||
"status_flag" text(1),
|
||||
"cost_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_log_operate
|
||||
-- ----------------------------
|
||||
27
build/database/lite/install/sys_log_user_password.sql
Normal file
27
build/database/lite/install/sys_log_user_password.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_log_user_password
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_log_user_password";
|
||||
CREATE TABLE "sys_log_user_password" (
|
||||
"id" integer NOT NULL,
|
||||
"user_id" integer,
|
||||
"user_name" text(32),
|
||||
"password" text(128),
|
||||
"create_by" text(64),
|
||||
"create_time" integer,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table sys_log_user_password
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_id_name_time"
|
||||
ON "sys_log_user_password" (
|
||||
"user_id" ASC,
|
||||
"user_name" ASC,
|
||||
"create_time" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_log_user_password
|
||||
-- ----------------------------
|
||||
202
build/database/lite/install/sys_menu.sql
Normal file
202
build/database/lite/install/sys_menu.sql
Normal file
@@ -0,0 +1,202 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_menu
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_menu";
|
||||
CREATE TABLE "sys_menu" (
|
||||
"menu_id" integer NOT NULL,
|
||||
"menu_name" text(64) NOT NULL,
|
||||
"parent_id" integer,
|
||||
"menu_sort" integer,
|
||||
"menu_path" text(255),
|
||||
"component" text(255),
|
||||
"frame_flag" text(1),
|
||||
"cache_flag" text(1),
|
||||
"menu_type" text(1) NOT NULL,
|
||||
"visible_flag" text(1),
|
||||
"status_flag" text(1),
|
||||
"perms" text(128),
|
||||
"icon" text(128),
|
||||
"del_flag" text(1),
|
||||
"create_by" text(64),
|
||||
"create_time" integer,
|
||||
"update_by" text(64),
|
||||
"update_time" integer,
|
||||
"remark" text(500),
|
||||
PRIMARY KEY ("menu_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_menu
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_menu" VALUES (1, 'menu.system', 0, 16, 'system', '', '1', '1', 'D', '1', '1', '', 'icon-xiangmu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.systemRemark');
|
||||
INSERT INTO "sys_menu" VALUES (4, 'menu.ne', 0, 3, 'ne', '', '1', '0', 'D', '1', '1', '', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.configRemark');
|
||||
INSERT INTO "sys_menu" VALUES (5, 'menu.ue', 0, 7, 'ue', '', '1', '0', 'D', '1', '1', '', 'icon-wocanyu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.ueRemark');
|
||||
INSERT INTO "sys_menu" VALUES (60, 'menu.tools', 0, 60, 'tool', '', '1', '1', 'D', '1', '1', '', 'icon-wenjian', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.toolsRemark');
|
||||
INSERT INTO "sys_menu" VALUES (61, 'menu.tools.terminal', 60, 20, 'terminal', 'tool/terminal/index', '1', '1', 'M', '1', '1', 'tool:terminal:index', 'icon-suofang', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (62, 'menu.tools.help', 60, 62, 'help', 'tool/help/index', '1', '1', 'M', '0', '1', 'tool:help:list', 'icon-shuoming', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.tools.helpRemark');
|
||||
INSERT INTO "sys_menu" VALUES (63, 'menu.tools.ps', 60, 8, 'ps', 'tool/ps/index', '1', '0', 'M', '1', '1', 'tool:ps:list', 'icon-zhizuoliucheng', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (64, 'menu.tools.net', 60, 9, 'net', 'tool/net/index', '1', '0', 'M', '1', '1', 'tool:net:list', 'icon-zhizuoliucheng', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (65, 'menu.tools.ping', 60, 4, 'ping', 'tool/ping/index', '1', '0', 'M', '1', '1', 'tool:ping:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (66, 'menu.tools.iperf', 60, 6, 'iperf', 'tool/iperf/index', '1', '0', 'M', '1', '1', 'tool:iperf:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (100, 'menu.security.user', 2113, 1, 'user', 'system/user/index', '1', '1', 'M', '1', '1', 'system:user:list', 'icon-wocanyu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.userRemark');
|
||||
INSERT INTO "sys_menu" VALUES (101, 'menu.security.role', 2113, 3, 'role', 'system/role/index', '1', '1', 'M', '1', '1', 'system:role:list', 'icon-anzhuo', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.roleRemark');
|
||||
INSERT INTO "sys_menu" VALUES (102, 'menu.security.roleUser', 2113, 3, 'role/inline/auth-user/:roleId', 'system/role/auth-user', '1', '1', 'M', '0', '1', 'system:role:auth', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.roleUserRemark');
|
||||
INSERT INTO "sys_menu" VALUES (103, 'menu.system.menu', 1, 10, 'menu', 'system/menu/index', '1', '1', 'M', '1', '1', 'system:menu:list', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.menuRemark');
|
||||
INSERT INTO "sys_menu" VALUES (104, 'menu.security.dept', 2113, 5, 'dept', 'system/dept/index', '1', '1', 'M', '1', '1', 'system:dept:list', 'icon-yuzhanghao1', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.deptRemark');
|
||||
INSERT INTO "sys_menu" VALUES (105, 'menu.security.post', 2113, 6, 'post', 'system/post/index', '1', '1', 'M', '1', '1', 'system:post:list', 'icon-gonggaodayi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.postRemark');
|
||||
INSERT INTO "sys_menu" VALUES (106, 'menu.system.dictType', 1, 30, 'dict', 'system/dict/index', '1', '1', 'M', '1', '1', 'system:dict:list', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.dictTypeRemark');
|
||||
INSERT INTO "sys_menu" VALUES (107, 'menu.system.dictData', 1, 31, 'dict/inline/data/:dictId', 'system/dict/data', '1', '1', 'M', '0', '1', 'system:dict:data', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.dictDataRemark');
|
||||
INSERT INTO "sys_menu" VALUES (108, 'menu.system.paramSet', 1, 59, 'config', 'system/config/index', '1', '1', 'M', '1', '1', 'system:config:list', 'icon-gongnengjieshao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.paramSetRemark');
|
||||
INSERT INTO "sys_menu" VALUES (111, 'menu.system.systemLog', 1, 11, 'log', '', '1', '1', 'D', '0', '0', '', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.systemLogRemark');
|
||||
INSERT INTO "sys_menu" VALUES (112, 'menu.system.systemInfo', 1, 5, 'system-info', 'monitor/system/info', '1', '1', 'M', '1', '1', 'monitor:system:info', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.systemInfoRemark');
|
||||
INSERT INTO "sys_menu" VALUES (113, 'menu.system.cacheInfo', 1, 8, 'cache-info', 'monitor/cache/info', '1', '1', 'M', '1', '1', 'monitor:cache:info', 'icon-gongnengjieshao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.cacheInfoRemark');
|
||||
INSERT INTO "sys_menu" VALUES (114, 'menu.system.cache', 1, 9, 'cache', 'monitor/cache/index', '1', '1', 'M', '1', '1', 'monitor:cache:list', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.cacheRemark');
|
||||
INSERT INTO "sys_menu" VALUES (115, 'menu.security.onlineUser', 2113, 2, 'online', 'monitor/online/index', '1', '1', 'M', '1', '1', 'monitor:online:list', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.security.onlineUserRemark');
|
||||
INSERT INTO "sys_menu" VALUES (116, 'menu.system.job', 1, 20, 'job', 'monitor/job/index', '1', '1', 'M', '1', '1', 'monitor:job:list', 'icon-lishi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.jobRemark');
|
||||
INSERT INTO "sys_menu" VALUES (117, 'menu.system.jobLog', 1, 21, '/system/job/inline/log/:jobId', 'monitor/job/log', '1', '1', 'M', '0', '1', 'monitor:job:log', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.jobLogRemark');
|
||||
INSERT INTO "sys_menu" VALUES (500, 'menu.log.operat', 2089, 25, 'operate', 'system/log/operate/index', '1', '1', 'M', '1', '1', 'system:log:operate:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.operatRemark');
|
||||
INSERT INTO "sys_menu" VALUES (501, 'menu.log.login', 2089, 26, 'login', 'system/log/login/index', '1', '1', 'M', '1', '1', 'system:log:login:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.loginRemark');
|
||||
INSERT INTO "sys_menu" VALUES (1000, 'menu.common.query', 100, 1, '', '', '1', '1', 'B', '1', '1', 'system:user:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1001, 'menu.common.add', 100, 2, '', '', '1', '1', 'B', '1', '1', 'system:user:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1002, 'menu.common.edit', 100, 3, '', '', '1', '1', 'B', '1', '1', 'system:user:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1003, 'menu.common.delete', 100, 4, '', '', '1', '1', 'B', '1', '1', 'system:user:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1004, 'menu.common.export', 100, 5, '', '', '1', '1', 'B', '1', '1', 'system:user:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1005, 'menu.common.import', 100, 6, '', '', '1', '1', 'B', '1', '1', 'system:user:import', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1006, 'menu.common.resetPwd', 100, 7, '', '', '1', '1', 'B', '1', '1', 'system:user:resetPwd', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1007, 'menu.common.query', 101, 1, '', '', '1', '1', 'B', '1', '1', 'system:role:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1008, 'menu.common.add', 101, 2, '', '', '1', '1', 'B', '1', '1', 'system:role:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1009, 'menu.common.edit', 101, 3, '', '', '1', '1', 'B', '1', '1', 'system:role:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1010, 'menu.common.delete', 101, 4, '', '', '1', '1', 'B', '1', '1', 'system:role:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1011, 'menu.common.export', 101, 5, '', '', '1', '1', 'B', '1', '1', 'system:role:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1012, 'menu.common.query', 103, 1, '', '', '1', '1', 'B', '1', '1', 'system:menu:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1013, 'menu.common.add', 103, 2, '', '', '1', '1', 'B', '1', '1', 'system:menu:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1014, 'menu.common.edit', 103, 3, '', '', '1', '1', 'B', '1', '1', 'system:menu:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1015, 'menu.common.delete', 103, 4, '', '', '1', '1', 'B', '1', '1', 'system:menu:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1016, 'menu.common.query', 104, 1, '', '', '1', '1', 'B', '1', '1', 'system:dept:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1017, 'menu.common.add', 104, 2, '', '', '1', '1', 'B', '1', '1', 'system:dept:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1018, 'menu.common.edit', 104, 3, '', '', '1', '1', 'B', '1', '1', 'system:dept:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1019, 'menu.common.delete', 104, 4, '', '', '1', '1', 'B', '1', '1', 'system:dept:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1020, 'menu.common.query', 105, 1, '', '', '1', '1', 'B', '1', '1', 'system:post:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1021, 'menu.common.add', 105, 2, '', '', '1', '1', 'B', '1', '1', 'system:post:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1022, 'menu.common.edit', 105, 3, '', '', '1', '1', 'B', '1', '1', 'system:post:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1023, 'menu.common.delete', 105, 4, '', '', '1', '1', 'B', '1', '1', 'system:post:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1024, 'menu.common.export', 105, 5, '', '', '1', '1', 'B', '1', '1', 'system:post:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1025, 'menu.common.query', 106, 1, '#', '', '1', '1', 'B', '1', '1', 'system:dict:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1026, 'menu.common.add', 106, 2, '#', '', '1', '1', 'B', '1', '1', 'system:dict:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1027, 'menu.common.edit', 106, 3, '#', '', '1', '1', 'B', '1', '1', 'system:dict:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1028, 'menu.common.delete', 106, 4, '#', '', '1', '1', 'B', '1', '1', 'system:dict:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1029, 'menu.common.export', 106, 5, '#', '', '1', '1', 'B', '1', '1', 'system:dict:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1030, 'menu.common.query', 108, 1, '#', '', '1', '1', 'B', '1', '1', 'system:config:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1031, 'menu.common.add', 108, 2, '#', '', '1', '1', 'B', '1', '1', 'system:config:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1032, 'menu.common.edit', 108, 3, '#', '', '1', '1', 'B', '1', '1', 'system:config:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1033, 'menu.common.delete', 108, 4, '#', '', '1', '1', 'B', '1', '1', 'system:config:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1034, 'menu.common.export', 108, 5, '#', '', '1', '1', 'B', '1', '1', 'system:config:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1039, 'menu.common.query', 500, 1, '#', '', '1', '1', 'B', '1', '1', 'system:log:operate:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1040, 'menu.common.delete', 500, 2, '#', '', '1', '1', 'B', '1', '1', 'system:log:operate:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1041, 'menu.common.export', 500, 3, '#', '', '1', '1', 'B', '1', '1', 'system:log:operate:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1042, 'menu.common.query', 501, 1, '#', '', '1', '1', 'B', '1', '1', 'system:log:login:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1043, 'menu.common.delete', 501, 2, '#', '', '1', '1', 'B', '1', '1', 'system:log:login:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1044, 'menu.common.export', 501, 3, '#', '', '1', '1', 'B', '1', '1', 'system:log:login:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1045, 'menu.common.unlock', 501, 4, '#', '', '1', '1', 'B', '1', '1', 'system:log:login:unlock', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1046, 'menu.common.query', 114, 1, '#', '', '1', '1', 'B', '1', '1', 'monitor:cache:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1047, 'menu.common.delete', 114, 2, '#', '', '1', '1', 'B', '1', '1', 'monitor:cache:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1048, 'menu.common.query', 115, 1, '#', '', '1', '1', 'B', '1', '1', 'monitor:online:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1049, 'menu.forcedQuit.batch ', 115, 2, '#', '', '1', '1', 'B', '1', '1', 'monitor:online:batchLogout', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1050, 'menu.forcedQuit.single', 115, 3, '#', '', '1', '1', 'B', '1', '1', 'monitor:online:forceLogout', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1051, 'menu.common.query', 116, 1, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:query', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1052, 'menu.common.add', 116, 2, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:add', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1053, 'menu.common.edit', 116, 3, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1054, 'menu.common.delete', 116, 4, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1055, 'menu.common.edit', 116, 5, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:changeStatus', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (1056, 'menu.common.export', 116, 6, '#', '', '1', '1', 'B', '1', '1', 'monitor:job:export', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2000, 'menu.neData.udmAuth', 5, 1, 'udm-auth', 'neData/udm-auth/index', '1', '1', 'M', '1', '1', 'udm:auth:index', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2001, 'menu.neData.udmSub', 5, 3, 'udm-sub', 'neData/udm-sub/index', '1', '1', 'M', '1', '1', 'udm:sub:index', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2002, 'menu.neData.udmVOIP', 5, 5, 'udm-voip', 'neData/udm-voip/index', '1', '0', 'M', '1', '1', 'udm:voip:list', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2003, 'menu.neData.udmVolte', 5, 7, 'udm-volte', 'neData/udm-volte/index', '1', '0', 'M', '1', '1', 'udm:volte:list', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2004, 'menu.neData.imsSub', 5, 9, 'ims-sub', 'neData/ims-sub/index', '1', '0', 'M', '1', '1', 'ims:sub:index', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2005, 'menu.neData.smfSub', 5, 12, 'smf-sub', 'neData/smf-sub/index', '1', '0', 'M', '1', '1', 'smf:sub:index', 'icon-xiangmuchengyuan', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2006, 'menu.neData.baseOnline', 5, 15, 'base-online', 'neData/base-online/index', '1', '0', 'M', '0', '1', 'amf,mme:base-online:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2007, 'menu.neData.baseStation', 5, 18, 'base-station', 'neData/base-station/index', '1', '0', 'M', '1', '1', 'amf,mme:base-station:list', 'icon-fenxiang', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2008, 'menu.ueUser.n3iwf', 5, 20, 'n3iwf', 'neUser/n3iwf/index', '1', '0', 'M', '0', '1', 'neUser:n3iwf:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2009, 'menu.neData.pcfSub', 5, 24, 'pcf-sub', 'neData/pcf-sub/index', '1', '0', 'M', '1', '1', 'pcf:sub:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2010, 'menu.neUser.nssf', 5, 26, 'nssf', 'neUser/nssf/index', '1', '0', 'M', '0', '1', 'neUser:nssf:index', 'icon-daimayingyong', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2011, 'menu.neUser.nssfAmf', 5, 28, 'nssfAmf', 'neUser/nssfAmf/index', '1', '0', 'M', '0', '1', 'neUser:nssfAmf:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2083, 'menu.trace', 2087, 30, 'traceManage', '', '1', '0', 'D', '1', '1', '', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.traceRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2084, 'menu.trace.task', 2083, 1, 'task', 'traceManage/task/index', '1', '0', 'M', '1', '1', 'traceManage:task:index', 'icon-chexiao', '0', 'system', 1728641403588, 'system', 1744453890548, 'menu.trace.taskRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2085, 'menu.trace.taskData', 2083, 4, 'task/inline/data', 'traceManage/task/data', '1', '0', 'M', '0', '1', 'traceManage:task:data', '#', '0', 'system', 1728641403588, 'system', 1744453921381, '');
|
||||
INSERT INTO "sys_menu" VALUES (2086, 'menu.trace.pcap', 2083, 11, 'pcap', 'traceManage/pcap/index', '1', '1', 'M', '1', '1', 'traceManage:pcap:index', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.trace.pcapRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2087, 'menu.fault', 0, 2, 'faultManage', '', '1', '0', 'D', '1', '1', '', 'icon-jinggao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.faultRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2088, 'menu.fault.active', 2129, 1, 'active-alarm', 'faultManage/active-alarm/index', '1', '1', 'M', '1', '1', 'faultManage:active-alarm:index', 'icon-wenjian', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.fault.activemRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2089, 'menu.log', 0, 9, 'logManage', '', '1', '0', 'D', '1', '1', '', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.logRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2091, 'menu.log.mml', 2089, 30, 'mml', 'logManage/mml/index', '1', '1', 'M', '1', '1', 'logManage:mml:index', 'icon-wocanyu', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.mmlRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2092, 'menu.log.alarm', 2089, 40, 'alarm-log', 'logManage/alarm/index', '1', '0', 'M', '1', '1', 'logManage:alarm:index', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.alarmRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2094, 'menu.log.forwarding', 2089, 41, 'forwarding', 'logManage/forwarding/index', '1', '0', 'M', '1', '1', 'logManage:forwarding:index', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.forwardingRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2095, 'menu.log.set', 2089, 45, 'logSet', 'logManage/logSet/index', '1', '0', 'M', '0', '0', 'logManage:logSet:index', 'icon-you', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.log.setRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2096, 'menu.neData.backupData', 5, 40, 'backup-data', 'neData/backup-data/index', '1', '0', 'M', '1', '1', 'ne-data:backup-data:list', 'icon-wenjian', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2097, 'menu.fault.history', 2129, 2, 'history-alarm', 'faultManage/history-alarm/index', '1', '1', 'M', '1', '1', 'faultManage/history-alarm/index', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.fault.historyRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2098, 'menu.fault.set', 2129, 100, 'fault-setting', 'faultManage/fault-setting/index', '1', '0', 'M', '0', '1', 'faultManage/fault-setting/index', 'icon-gonggaodayi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.fault.setRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2099, 'menu.perf', 0, 5, 'perfManage', '', '1', '0', 'D', '1', '1', '', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perfRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2100, 'menu.perf.task', 2099, 1, 'taskManage', 'perfManage/taskManage/index', '1', '0', 'M', '0', '1', 'perfManage:taskManage:index', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.taskRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2101, 'menu.perf.data', 2099, 2, 'perfData', 'perfManage/perfData/index', '1', '0', 'M', '0', '1', 'perfManage:perfData:index', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.dataRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2102, 'menu.perf.kpiOverView', 2099, 10, 'kpiOverView', 'perfManage/kpiOverView/index', '1', '0', 'M', '1', '1', 'perfManage:perfReport:index', 'icon-gonggaodayi', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2103, 'menu.perf.threshold', 2099, 4, 'perfThreshold', 'perfManage/perfThreshold/index', '1', '0', 'M', '0', '0', 'perfManage:perfThreshold:index', 'icon-zhuanrang', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.thresholdRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2104, 'menu.perf.kpi', 2099, 20, 'goldTarget', 'perfManage/goldTarget/index', '1', '1', 'M', '1', '1', 'perfManage:goldTarget:index', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.kpiRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2105, 'menu.perf.customTarget', 2099, 99, 'customTarget', 'perfManage/customTarget/index', '1', '0', 'M', '1', '1', 'perfManage:customTarget:index', 'icon-fanhui1', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.perf.customTargetRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2106, 'menu.perf.kpiKeyTarget', 2099, 12, 'kpiKeyTarget', 'perfManage/kpiKeyTarget/index', '1', '0', 'M', '1', '1', 'perfManage:kpiKeyTarget:index', 'icon-fuzhichenggong', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2107, 'menu.mml', 0, 8, 'mmlManage', '', '1', '0', 'D', '1', '1', '', 'icon-zhizuoliucheng', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mmlRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2108, 'menu.mml.ne', 2107, 1, 'neOperate', 'mmlManage/neOperate/index', '1', '1', 'M', '1', '1', 'mmlManage:neOperate:index', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mml.neRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2109, 'menu.mml.udm', 2107, 2, 'udmOperate', 'mmlManage/udmOperate/index', '1', '1', 'M', '1', '1', 'mmlManage:udmOperate:index', 'icon-gonggaodayi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mml.udmRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2110, 'menu.mml.set', 2107, 4, 'mmlSet', 'mmlManage/mmlSet/index', '1', '0', 'M', '1', '1', 'mmlManage:mmlSet:index', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mml.setRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2111, 'menu.mml.omc', 2107, 3, 'omcOperate', 'mmlManage/omcOperate/index', '1', '1', 'M', '1', '1', 'mmlManage:omcOperate:index', 'icon-huizhiguize', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.mml.omcRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2112, 'menu.dashboard.sgwcCDR', 2140, 12, 'sgwcCDR', 'dashboard/sgwcCDR/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2113, 'menu.security', 0, 14, 'security', '', '1', '0', 'D', '1', '1', '', 'icon-suofang', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.securityRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2114, 'menu.system.systemSet', 1, 60, 'setting', 'system/setting/index', '1', '1', 'M', '1', '1', 'system:setting:index', 'icon-piliang', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.systemSetRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2115, 'menu.system.systemResource', 1, 6, 'monitor', 'monitor/monitor/index', '1', '1', 'M', '1', '1', 'monitor:monitor:info', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.systemResourceRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2116, 'menu.dashboard.smscCDR.content', 2157, 1, '', '', '1', '1', 'B', '1', '1', 'cdr:smsc:content', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2117, 'menu.common.delete', 2140, 1, '', '', '1', '1', 'B', '1', '1', 'cdr:ne:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2118, 'menu.dashboard.smfCDRByIMSI', 2140, 7, 'smfCDRByIMSI', 'dashboard/smfCDRByIMSI/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-gerenzhanghu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2121, 'menu.system.user.editRole', 100, 8, '', '', '1', '1', 'B', '1', '1', 'system:user:editRole', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2122, 'menu.system.setting.i18n', 2114, 1, '', '', '1', '1', 'B', '1', '1', 'system:setting:i18n', '#', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.system.setting.i18nRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2123, 'menu.log.neFile', 2089, 9, 'neFile', 'ne/neFile/index', '1', '0', 'M', '1', '1', 'ne:neFile:index', 'icon-tubiaohuizhi', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2126, 'menu.monitor.topology', 2130, 10, 'topology', 'monitor/topology/index', '1', '0', 'M', '1', '1', 'monitor:topology:index', 'icon-fangda', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2127, 'menu.monitor.topologyBuild', 2130, 30, 'topologyBuild', 'monitor/topologyBuild/index', '1', '0', 'M', '1', '1', 'monitor:topologyBuild:index', 'icon-fangda', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2128, 'menu.monitor.topologyArchitecture', 2130, 20, 'topologyArchitecture', 'monitor/topologyArchitecture/index', '1', '0', 'M', '1', '1', 'monitor:topologyArchitecture:index', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2129, 'menu.alarm', 2087, 20, 'alarm', '', '1', '0', 'D', '1', '1', '', 'icon-jinggao', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2130, 'menu.topology', 2087, 10, 'topology', '', '1', '0', 'D', '1', '1', '', 'icon-anzhuo', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2131, 'menu.dashboard', 2087, 15, 'dashboard', '', '1', '0', 'D', '0', '0', '', 'icon-soutubiao', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2132, 'menu.dashboard.overview', 2087, 1, 'overview', 'dashboard/overview/index', '1', '0', 'M', '1', '1', 'dashboard:overview:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2133, 'menu.dashboard.imsCDR', 2140, 3, 'imsCDR', 'dashboard/imsCDR/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2135, 'menu.ne.neHost', 4, 15, 'neHost', 'ne/neHost/index', '1', '1', 'M', '1', '0', 'ne:neHost:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2136, 'menu.ne.neHostCommand', 4, 18, 'neHostCommand', 'ne/neHostCommand/index', '1', '0', 'M', '1', '0', 'ne:neHostCommand:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2137, 'menu.ne.neInfo', 4, 10, 'neInfo', 'ne/neInfo/index', '1', '0', 'M', '1', '1', 'ne:neInfo:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2138, 'menu.dashboard.amfUE', 2141, 1, 'amfUE', 'dashboard/amfUE/index', '1', '0', 'M', '1', '1', 'dashboard:amfUE:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2140, 'menu.monitor.cdr', 2089, 10, 'cdr', '', '1', '0', 'D', '1', '1', '', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2141, 'menu.monitor.event', 2089, 20, 'event', '', '1', '0', 'D', '1', '1', '', 'icon-gengduo', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2142, 'menu.ne.neQuickSetup', 4, 40, 'neQuickSetup', 'ne/neQuickSetup/index', '1', '1', 'M', '1', '1', 'ne:neQuickSetup:list', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2143, 'menu.ne.neLicense', 4, 20, 'neLicense', 'ne/neLicense/index', '1', '0', 'M', '1', '1', 'ne:neLicense:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2144, 'menu.ne.neSoftware', 4, 23, 'neSoftware', 'ne/neSoftware/index', '1', '0', 'M', '1', '1', 'ne:neSoftware:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2145, 'menu.ne.neVersion', 4, 26, 'neVersion', 'ne/neVersion/index', '1', '0', 'M', '1', '1', 'ne:neVersion:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2146, 'menu.ne.neConfig', 4, 28, 'neConfig', 'ne/neConfig/index', '1', '0', 'M', '1', '1', 'ne:neConfig:list', 'icon-wofaqi', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2147, 'menu.fault.event', 2129, 3, 'event', 'faultManage/event/index', '1', '0', 'M', '1', '1', 'faultManage:event:index', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2148, 'menu.dashboard.smfCDR', 2140, 6, 'smfCDR', 'dashboard/smfCDR/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2149, 'menu.dashboard.mmeUE', 2141, 5, 'mmeUE', 'dashboard/mmeUE/index', '1', '0', 'M', '1', '1', 'dashboard:mmeUE:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2150, 'menu.system.user.editPost', 100, 9, '', '', '1', '1', 'B', '1', '1', 'system:user:editPost', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2151, 'menu.system.setting.doc', 2114, 2, '', '', '1', '1', 'B', '1', '1', 'system:setting:doc', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2152, 'menu.system.setting.official', 2114, 3, '', '', '1', '1', 'B', '1', '1', 'system:setting:official', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2153, 'menu.system.setting.lock', 2114, 4, '', '', '1', '1', 'B', '1', '1', 'system:setting:lock', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2154, 'menu.ne.neConfigBackup', 4, 29, 'neConfigBackup', 'ne/neConfigBackup/index', '1', '0', 'M', '1', '1', 'ne:neConfigBackup:list', 'icon-fuzhidaima', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2155, 'menu.common.delete', 2154, 1, '#', '', '1', '1', 'B', '1', '1', 'ne:neConfigBackup:remove', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2156, 'menu.common.edit', 2154, 2, '#', '', '1', '1', 'B', '1', '1', 'ne:neConfigBackup:edit', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2157, 'menu.dashboard.smscCDR', 2140, 9, 'smscCDR', 'dashboard/smscCDR/index', '1', '0', 'M', '1', '1', 'dashboard:cdr:index', 'icon-paixu', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2158, 'menu.trace.pcapFile', 2083, 12, 'pcap/inline/file', 'traceManage/pcap/file', '1', '0', 'M', '0', '1', 'traceManage:pcap:index', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2159, 'menu.log.exportFile', 2089, 100, 'exportFile', 'logManage/exportFile/index', '1', '0', 'M', '1', '1', 'logManage:exportFile:index', 'icon-wenjian', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2160, 'menu.perf.kpiCReport', 2099, 100, 'kpiCReport', 'perfManage/kpiCReport/index', '1', '0', 'M', '1', '1', 'perfManage:kpiCReport:index', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2161, 'menu.trace.taskHLR', 2083, 6, 'taskHLR', 'traceManage/task-hlr/index', '1', '0', 'M', '0', '1', 'traceManage:taskHLR:index', 'icon-chexiao', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2162, 'menu.trace.taskAnalyze', 2083, 2, 'task/inline/analyze', 'traceManage/task/analyze', '1', '0', 'M', '0', '1', 'traceManage:task:analyze', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2163, 'menu.trace.tshark', 2083, 14, 'tshark', 'traceManage/tshark/index', '1', '0', 'M', '1', '1', 'traceManage:tshark:index', 'icon-gengduo', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2164, 'menu.trace.wireshark', 2083, 16, 'wireshark', 'traceManage/wireshark/index', '1', '0', 'M', '1', '1', 'traceManage:wireshark:index', 'icon-gengduo', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2165, 'menu.ne.neOverview', 4, 1, 'neOverview', 'configManage/neOverview/index', '1', '0', 'M', '1', '1', 'configManage:neOverview:index', 'icon-tubiaoku', '0', 'system', 1728641403588, 'system', 1728641403588, 'menu.ne.neOverviewRemark');
|
||||
INSERT INTO "sys_menu" VALUES (2166, 'menu.dashboard.overview.smfUeNum', 2132, 4, '', '', '1', '1', 'B', '1', '1', 'dashboard:overview:smfUeNum', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2167, 'menu.dashboard.overview.imsUeNum', 2132, 2, '', '', '1', '1', 'B', '1', '1', 'dashboard:overview:imsUeNum', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2168, 'menu.dashboard.overview.gnbBase', 2132, 6, '', '', '1', '1', 'B', '1', '1', 'dashboard:overview:gnbBase', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
INSERT INTO "sys_menu" VALUES (2169, 'menu.dashboard.overview.enbBase', 2132, 8, '', '', '1', '1', 'B', '1', '1', 'dashboard:overview:enbBase', '#', '0', 'system', 1728641403588, 'system', 1728641403588, '');
|
||||
26
build/database/lite/install/sys_post.sql
Normal file
26
build/database/lite/install/sys_post.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_post
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_post";
|
||||
CREATE TABLE "sys_post" (
|
||||
"post_id" integer NOT NULL,
|
||||
"post_code" text(64) NOT NULL,
|
||||
"post_name" text(64) NOT NULL,
|
||||
"post_sort" integer(11),
|
||||
"status_flag" text(1),
|
||||
"del_flag" text(1),
|
||||
"create_by" text(64),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(64),
|
||||
"update_time" integer(20),
|
||||
"remark" text(500),
|
||||
PRIMARY KEY ("post_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_post
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_post" VALUES (1, 'administator', 'post.admin', 1, '1', '0', 'system', 1697110106499, '', 0, '');
|
||||
INSERT INTO "sys_post" VALUES (2, 'operator', 'post.operator', 2, '1', '0', 'system', 1697110106499, '', 0, '');
|
||||
INSERT INTO "sys_post" VALUES (3, 'monitor', 'post.monitor', 3, '1', '0', 'system', 1697110106499, '', 0, '');
|
||||
INSERT INTO "sys_post" VALUES (4, 'visitor', 'post.visitor', 4, '1', '0', 'system', 1697110106499, '', 0, '');
|
||||
30
build/database/lite/install/sys_role.sql
Normal file
30
build/database/lite/install/sys_role.sql
Normal file
@@ -0,0 +1,30 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_role
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_role";
|
||||
CREATE TABLE "sys_role" (
|
||||
"role_id" integer NOT NULL,
|
||||
"role_name" text(64) NOT NULL,
|
||||
"role_key" text(64) NOT NULL,
|
||||
"role_sort" integer(11),
|
||||
"data_scope" text(1),
|
||||
"menu_check_strictly" text(1),
|
||||
"dept_check_strictly" text(1),
|
||||
"status_flag" text(1),
|
||||
"del_flag" text(1),
|
||||
"create_by" text(64),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(64),
|
||||
"update_time" integer(20),
|
||||
"remark" text(200),
|
||||
PRIMARY KEY ("role_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_role
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_role" VALUES (1, 'role.system', 'system', 1, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.systemRemark');
|
||||
INSERT INTO "sys_role" VALUES (2, 'role.admin', 'admin', 2, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.adminRemark');
|
||||
INSERT INTO "sys_role" VALUES (3, 'role.operator', 'operator', 3, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.operatorRemark');
|
||||
INSERT INTO "sys_role" VALUES (4, 'role.monitor', 'monitor', 4, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.monitorRemark');
|
||||
INSERT INTO "sys_role" VALUES (5, 'role.vistor', 'vistor', 5, '1', '1', '1', '1', '0', 'system', 1697091437683, 'system', 1697091437683, 'role.vistorRemark');
|
||||
13
build/database/lite/install/sys_role_dept.sql
Normal file
13
build/database/lite/install/sys_role_dept.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_role_dept
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_role_dept";
|
||||
CREATE TABLE "sys_role_dept" (
|
||||
"role_id" integer(20) NOT NULL,
|
||||
"dept_id" integer(20) NOT NULL,
|
||||
PRIMARY KEY ("role_id", "dept_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_role_dept
|
||||
-- ----------------------------
|
||||
190
build/database/lite/install/sys_role_menu.sql
Normal file
190
build/database/lite/install/sys_role_menu.sql
Normal file
@@ -0,0 +1,190 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_role_menu
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_role_menu";
|
||||
CREATE TABLE "sys_role_menu" (
|
||||
"role_id" integer(20) NOT NULL,
|
||||
"menu_id" integer(20) NOT NULL,
|
||||
PRIMARY KEY ("role_id", "menu_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_role_menu
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 4);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 5);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 60);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 61);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 65);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 66);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 100);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 101);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 102);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 103);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 108);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 111);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 116);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 117);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1000);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1001);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1002);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1003);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1004);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1005);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1006);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1007);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1008);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1009);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1010);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1011);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1012);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1014);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1030);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1032);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1051);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1053);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 1055);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2000);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2001);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2002);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2003);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2004);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2005);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2007);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2009);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2083);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2084);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2086);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2087);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2088);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2089);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2092);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2094);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2096);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2097);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2099);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2102);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2107);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2109);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2113);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2114);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2116);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2117);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2118);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2121);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2122);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2123);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2126);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2128);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2129);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2130);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2132);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2133);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2137);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2138);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2140);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2141);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2143);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2145);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2146);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2147);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2148);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2150);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2151);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2152);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2153);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2154);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2155);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2156);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2157);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2158);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2159);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2162);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2163);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2164);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2165);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2166);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2167);
|
||||
INSERT INTO "sys_role_menu" VALUES (2, 2168);
|
||||
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 1);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 4);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 5);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 60);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 65);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 66);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2000);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2001);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2002);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2003);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2004);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2005);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2007);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2009);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2083);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2086);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2087);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2088);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2089);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2092);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2094);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2097);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2107);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2109);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2114);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2116);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2123);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2126);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2128);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2129);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2130);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2132);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2133);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2137);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2138);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2140);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2141);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2143);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2146);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2147);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2148);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2151);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2152);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2157);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2158);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2165);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2166);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2167);
|
||||
INSERT INTO "sys_role_menu" VALUES (3, 2168);
|
||||
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 4);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2087);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2088);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2089);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2097);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2116);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2118);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2126);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2128);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2129);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2130);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2132);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2133);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2138);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2140);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2141);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2147);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2148);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2149);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2157);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2165);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2166);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2167);
|
||||
INSERT INTO "sys_role_menu" VALUES (4, 2168);
|
||||
|
||||
INSERT INTO "sys_role_menu" VALUES (5, 4);
|
||||
INSERT INTO "sys_role_menu" VALUES (5, 2087);
|
||||
INSERT INTO "sys_role_menu" VALUES (5, 2126);
|
||||
INSERT INTO "sys_role_menu" VALUES (5, 2130);
|
||||
INSERT INTO "sys_role_menu" VALUES (5, 2165);
|
||||
35
build/database/lite/install/sys_user.sql
Normal file
35
build/database/lite/install/sys_user.sql
Normal file
@@ -0,0 +1,35 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_user
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_user";
|
||||
CREATE TABLE "sys_user" (
|
||||
"user_id" integer NOT NULL,
|
||||
"dept_id" integer,
|
||||
"user_name" text(36) NOT NULL,
|
||||
"nick_name" text(36) NOT NULL,
|
||||
"email" text(64),
|
||||
"phone" text(32),
|
||||
"sex" text(1),
|
||||
"avatar" text(255),
|
||||
"password" text(128),
|
||||
"status_flag" text(1),
|
||||
"del_flag" text(1),
|
||||
"password_update_time" integer,
|
||||
"login_count" integer,
|
||||
"login_ip" text(128),
|
||||
"login_time" integer,
|
||||
"create_by" text(64),
|
||||
"create_time" integer,
|
||||
"update_by" text(64),
|
||||
"update_time" integer,
|
||||
"remark" text(200),
|
||||
PRIMARY KEY ("user_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_user
|
||||
-- ----------------------------
|
||||
INSERT INTO `sys_user` VALUES (1, 100, 'supervisor', 'supervisor', '', '', '0', '', '$2a$10$QgIcp6yuOEGrEU0TNU12K.uQRLbcufesEU7hiRYlRSSdUO7OAkoTq', '1', '0', 0, 0, '127.0.0.1', 0, 'system', 0, '', 0, '');
|
||||
INSERT INTO `sys_user` VALUES (2, 100, 'admin', 'admin', '', '', '0', '', '$2a$10$WVW6if2TNfR3OJmcaD9wX.gEd9TRymr5.Di2izFdDKUuiEGWuAqk6', '1', '0', 0, 0, '127.0.0.1', 0, 'system', 0, '', 0, '');
|
||||
INSERT INTO `sys_user` VALUES (3, 100, 'manager', 'manager', '', '', '0', '', '$2a$10$RND3fUw9Ai.WcggYSI57tu.u3OIlktdPxFzlWkmiHC1paV038t0I2', '1', '0', 0, 0, '127.0.0.1', 0, 'system', 0, '', 0, '');
|
||||
INSERT INTO `sys_user` VALUES (4, 100, 'monitor', 'monitor', '', '', '0', '', '$2a$10$t3zpKQ0olECotFyI1yO43.tCoS0EXoSRBDcqwl09xvrsmn14qFHHy', '1', '0', 0, 0, '127.0.0.1', 0, 'system', 0, '', 0, '');
|
||||
17
build/database/lite/install/sys_user_post.sql
Normal file
17
build/database/lite/install/sys_user_post.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_user_post
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_user_post";
|
||||
CREATE TABLE "sys_user_post" (
|
||||
"user_id" integer(20) NOT NULL,
|
||||
"post_id" integer(20) NOT NULL,
|
||||
PRIMARY KEY ("user_id", "post_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_user_post
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_user_post" VALUES (1, 1);
|
||||
INSERT INTO "sys_user_post" VALUES (2, 2);
|
||||
INSERT INTO "sys_user_post" VALUES (3, 3);
|
||||
INSERT INTO "sys_user_post" VALUES (4, 3);
|
||||
17
build/database/lite/install/sys_user_role.sql
Normal file
17
build/database/lite/install/sys_user_role.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for sys_user_role
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "sys_user_role";
|
||||
CREATE TABLE "sys_user_role" (
|
||||
"user_id" integer(20) NOT NULL,
|
||||
"role_id" integer(20) NOT NULL,
|
||||
PRIMARY KEY ("user_id", "role_id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of sys_user_role
|
||||
-- ----------------------------
|
||||
INSERT INTO "sys_user_role" VALUES (1, 1);
|
||||
INSERT INTO "sys_user_role" VALUES (2, 2);
|
||||
INSERT INTO "sys_user_role" VALUES (3, 3);
|
||||
INSERT INTO "sys_user_role" VALUES (4, 4);
|
||||
34
build/database/lite/install/trace_data.sql
Normal file
34
build/database/lite/install/trace_data.sql
Normal file
@@ -0,0 +1,34 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for trace_data
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "trace_data";
|
||||
CREATE TABLE "trace_data" (
|
||||
"id" integer NOT NULL,
|
||||
"trace_id" text(16) NOT NULL,
|
||||
"imsi" text(16),
|
||||
"msisdn" text(16),
|
||||
"src_addr" text(128),
|
||||
"dst_addr" text(128),
|
||||
"if_type" text(16),
|
||||
"msg_type" integer,
|
||||
"msg_direct" integer,
|
||||
"msg_ne" text(16),
|
||||
"msg_event" text(128),
|
||||
"length" integer,
|
||||
"timestamp" integer,
|
||||
"raw_msg" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table trace_data
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_task_id_time"
|
||||
ON "trace_data" (
|
||||
"trace_id" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of trace_data
|
||||
-- ----------------------------
|
||||
26
build/database/lite/install/trace_task.sql
Normal file
26
build/database/lite/install/trace_task.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for trace_task
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "trace_task";
|
||||
CREATE TABLE "trace_task" (
|
||||
"id" integer NOT NULL,
|
||||
"trace_id" text(16) NOT NULL,
|
||||
"trace_type" text(2) NOT NULL,
|
||||
"start_time" integer,
|
||||
"end_time" integer,
|
||||
"interfaces" text(255),
|
||||
"imsi" text(16),
|
||||
"msisdn" text(16),
|
||||
"src_ip" text(128),
|
||||
"dst_ip" text(128),
|
||||
"create_by" text(50),
|
||||
"create_time" integer,
|
||||
"remark" text(500),
|
||||
"ne_list" text(32) NOT NULL,
|
||||
"notify_url" text(128) NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of trace_task
|
||||
-- ----------------------------
|
||||
24
build/database/lite/install/trace_task_hlr.sql
Normal file
24
build/database/lite/install/trace_task_hlr.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for trace_task_hlr
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "trace_task_hlr";
|
||||
CREATE TABLE "trace_task_hlr" (
|
||||
"id" integer NOT NULL,
|
||||
"trace_id" text(50) NOT NULL,
|
||||
"imsi" text(16),
|
||||
"msisdn" text(16),
|
||||
"start_time" integer(20),
|
||||
"end_time" integer(20),
|
||||
"status" text(1),
|
||||
"msg" text(255),
|
||||
"remark" text(255),
|
||||
"create_by" text(50),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of trace_task_hlr
|
||||
-- ----------------------------
|
||||
28
build/database/lite/install/udm_auth.sql
Normal file
28
build/database/lite/install/udm_auth.sql
Normal file
@@ -0,0 +1,28 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for udm_auth
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "udm_auth";
|
||||
CREATE TABLE "udm_auth" (
|
||||
"id" integer NOT NULL,
|
||||
"imsi" text(50) NOT NULL,
|
||||
"ne_id" text(50),
|
||||
"amf" text(50),
|
||||
"status" text(50),
|
||||
"ki" text(50),
|
||||
"algo_index" text(50),
|
||||
"opc" text(50),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table udm_auth
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_auth_imsi_ne"
|
||||
ON "udm_auth" (
|
||||
"imsi" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of udm_auth
|
||||
-- ----------------------------
|
||||
25
build/database/lite/install/udm_extend.sql
Normal file
25
build/database/lite/install/udm_extend.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for udm_extend
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "udm_extend";
|
||||
CREATE TABLE "udm_extend" (
|
||||
"id" integer NOT NULL,
|
||||
"imsi" text(50) NOT NULL,
|
||||
"msisdn" text(50),
|
||||
"ne_id" text(50),
|
||||
"remark" text(500),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table udm_extend
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "imsi_ne"
|
||||
ON "udm_extend" (
|
||||
"imsi" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of udm_extend
|
||||
-- ----------------------------
|
||||
51
build/database/lite/install/udm_sub.sql
Normal file
51
build/database/lite/install/udm_sub.sql
Normal file
@@ -0,0 +1,51 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for udm_sub
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "udm_sub";
|
||||
CREATE TABLE "udm_sub" (
|
||||
"id" integer NOT NULL,
|
||||
"imsi" text(50) NOT NULL,
|
||||
"msisdn" text(50),
|
||||
"ne_id" text(50),
|
||||
"am_dat" text(1500),
|
||||
"ambr" text(50),
|
||||
"nssai" text(50),
|
||||
"rat" text(50),
|
||||
"arfb" text(50),
|
||||
"sar" text(50),
|
||||
"cn_type" text(50),
|
||||
"rfsp_index" text(50),
|
||||
"reg_timer" text(50),
|
||||
"ue_usage_type" text(50),
|
||||
"active_time" text(50),
|
||||
"mico" text(50),
|
||||
"odb_ps" text(50),
|
||||
"group_id" text(50),
|
||||
"eps_dat" text(1500),
|
||||
"eps_flag" text(50),
|
||||
"eps_odb" text(50),
|
||||
"hplmn_odb" text(50),
|
||||
"ard" text(50),
|
||||
"epstpl" text(50),
|
||||
"context_id" text(50),
|
||||
"apn_mum" text(50),
|
||||
"apn_context" text(50),
|
||||
"static_ip" text(50),
|
||||
"sm_data" text(1500),
|
||||
"smf_sel" text(50),
|
||||
"cag" text(50),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table udm_sub
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_sub_imsi_ne"
|
||||
ON "udm_sub" (
|
||||
"imsi" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of udm_sub
|
||||
-- ----------------------------
|
||||
24
build/database/lite/install/udm_voip.sql
Normal file
24
build/database/lite/install/udm_voip.sql
Normal file
@@ -0,0 +1,24 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for udm_voip
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "udm_voip";
|
||||
CREATE TABLE "udm_voip" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_id" text(50),
|
||||
"username" text(50),
|
||||
"password" text(128),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table udm_voip
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_voip_user_ne"
|
||||
ON "udm_voip" (
|
||||
"username" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of udm_voip
|
||||
-- ----------------------------
|
||||
31
build/database/lite/install/udm_volte_ims.sql
Normal file
31
build/database/lite/install/udm_volte_ims.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for udm_volte_ims
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "udm_volte_ims";
|
||||
CREATE TABLE "udm_volte_ims" (
|
||||
"id" integer NOT NULL,
|
||||
"imsi" text(50) NOT NULL,
|
||||
"msisdn" text(50),
|
||||
"ne_id" text(50),
|
||||
"tag" text(50),
|
||||
"vni" text(128),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table udm_volte_ims
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_volte_tag"
|
||||
ON "udm_volte_ims" (
|
||||
"tag" ASC
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX "uk_volte_imsi_ne"
|
||||
ON "udm_volte_ims" (
|
||||
"imsi" ASC,
|
||||
"msisdn" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
-- ----------------------------
|
||||
-- Records of udm_volte_ims
|
||||
-- ----------------------------
|
||||
28
build/database/lite/install/ue_event.sql
Normal file
28
build/database/lite/install/ue_event.sql
Normal file
@@ -0,0 +1,28 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ue_event
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ue_event";
|
||||
CREATE TABLE "ue_event" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(32),
|
||||
"timestamp" integer(20),
|
||||
"event_type" text(16),
|
||||
"event_json" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ue_event
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_type_t"
|
||||
ON "ue_event" (
|
||||
"event_type" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ue_event
|
||||
-- ----------------------------
|
||||
28
build/database/lite/install/ue_event_amf.sql
Normal file
28
build/database/lite/install/ue_event_amf.sql
Normal file
@@ -0,0 +1,28 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ue_event_amf
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ue_event_amf";
|
||||
CREATE TABLE "ue_event_amf" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(32),
|
||||
"timestamp" integer(20),
|
||||
"event_type" text(16),
|
||||
"event_json" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ue_event_amf
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_amf_type_t"
|
||||
ON "ue_event_amf" (
|
||||
"event_type" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ue_event_amf
|
||||
-- ----------------------------
|
||||
30
build/database/lite/install/ue_event_mme.sql
Normal file
30
build/database/lite/install/ue_event_mme.sql
Normal file
@@ -0,0 +1,30 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ue_event_mme
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ue_event_mme";
|
||||
CREATE TABLE "ue_event_mme" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(32),
|
||||
"timestamp" integer(20),
|
||||
"event_type" text(16),
|
||||
"event_json" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ue_event_mme
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_mme_type_t"
|
||||
ON "ue_event_mme" (
|
||||
"event_type" ASC,
|
||||
"timestamp" ASC
|
||||
);
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ue_event_mme
|
||||
-- ----------------------------
|
||||
|
||||
0
build/database/lite/install/zinstall.sql
Normal file
0
build/database/lite/install/zinstall.sql
Normal file
Reference in New Issue
Block a user