perf: 构建工具调整

This commit is contained in:
TsMask
2025-03-19 17:42:31 +08:00
parent 0838ac49e7
commit d987553af5
284 changed files with 25 additions and 1089 deletions

View 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
-- ----------------------------