Browse Source

计划bug处理

dev-v1.0.2
庄锐波 2 months ago
parent
commit
8e1af7daa8
  1. 36
      ng/11/start.sh
  2. 38
      ng/11/stop.sh
  3. 36
      ng/7/start.sh
  4. 38
      ng/7/stop.sh
  5. 36
      ng/8/start.sh
  6. 38
      ng/8/stop.sh
  7. 36
      ng/9/start.sh
  8. 38
      ng/9/stop.sh
  9. 117
      script/sql/zfjd-refactoring-v1/097-计划测试数据.sql
  10. 3
      zdxt-common/zdxt-common-security/src/main/java/org/dromara/common/security/config/SecurityConfig.java
  11. 2
      zdxt-web-client/zdxt-admin-plus-ui/src/views/nos/detail.vue
  12. 2
      zdxt-web-client/zdxt-admin-plus-ui/src/views/nos/legalTech.vue
  13. 2
      zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/my/plan/cp_plan_mine.vue
  14. 2
      zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-dev-cust-zrb.yml
  15. 6
      zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-dev-enf-ep.yml
  16. 6
      zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-dev-ent-ep.yml
  17. 6
      zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-dev-sup-ep.yml
  18. 6
      zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-prod-enf-ep.yml
  19. 6
      zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-prod-ent-ep.yml
  20. 6
      zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-prod-sup-ep.yml
  21. 6
      zdxt-web-server/zdxt-gateway-web-server/pom.xml
  22. 3
      zdxt-web-server/zdxt-gateway-web-server/src/main/java/com/zdxt/gateway/webserver/ZdxtGatewayApplication.java
  23. 6
      zdxt-web-server/zdxt-gateway-web-server/src/main/resources/application-dev.yml
  24. 32
      zdxt-web-server/zdxt-gateway-web-server/src/main/resources/application-prod.yml
  25. 32
      zdxt-web-server/zdxt-gateway-web-server/src/main/resources/application.yml

36
ng/11/start.sh

@ -0,0 +1,36 @@
#!/bin/bash
# 执法码2.0 网关 - 启动脚本
# 用法: ./start.sh
APP_HOME="/efcode20"
JAR_NAME="zdxt-gateway-web-server.jar"
PROFILES="prod"
LOG_FILE="${APP_HOME}/zdxt-gateway-web-server.log"
JAR_PATH="${APP_HOME}/${JAR_NAME}"
# 检查 jar 是否存在
if [ ! -f "$JAR_PATH" ]; then
echo "[FAIL] ${JAR_PATH} 不存在"
exit 1
fi
# 检查是否已在运行
PID=$(pgrep -f "${JAR_NAME}" 2>/dev/null)
if [ -n "$PID" ]; then
echo "[INFO] 服务已在运行 (PID: ${PID})"
exit 0
fi
# 启动服务
echo "[INFO] 启动 ${JAR_NAME} ..."
nohup java -jar "${JAR_PATH}" --spring.profiles.active=${PROFILES} > "${LOG_FILE}" 2>&1 &
NEW_PID=$!
sleep 1
if kill -0 "$NEW_PID" 2>/dev/null; then
echo "[OK] 启动成功 (PID: ${NEW_PID})"
else
echo "[FAIL] 启动失败,请查看日志: ${LOG_FILE}"
exit 1
fi

38
ng/11/stop.sh

@ -0,0 +1,38 @@
#!/bin/bash
# 执法码2.0 网关 - 停止脚本
# 用法: ./stop.sh
JAR_NAME="zdxt-gateway-web-server.jar"
SHUTDOWN_WAIT=15
# 查找进程
PID=$(pgrep -f "${JAR_NAME}" 2>/dev/null)
if [ -z "$PID" ]; then
echo "[INFO] 服务未在运行"
exit 0
fi
echo "[INFO] 停止 ${JAR_NAME} (PID: ${PID}) ..."
# 优雅停止
kill "$PID" 2>/dev/null
# 等待退出
COUNT=0
while kill -0 "$PID" 2>/dev/null; do
if [ $COUNT -ge $SHUTDOWN_WAIT ]; then
echo "[WARN] ${SHUTDOWN_WAIT}s 未退出,强制终止..."
kill -9 "$PID" 2>/dev/null
sleep 1
break
fi
sleep 1
((COUNT++))
done
if kill -0 "$PID" 2>/dev/null; then
echo "[FAIL] 停止失败 (PID: ${PID})"
exit 1
else
echo "[OK] 已停止"
fi

36
ng/7/start.sh

@ -0,0 +1,36 @@
#!/bin/bash
# 执法码2.0 - 启动脚本
# 用法: ./start.sh
APP_HOME="/efcode20"
JAR_NAME="zdxt-ent-ep.jar"
PROFILES="prod,prod-ent-ep"
LOG_FILE="${APP_HOME}/zdxt-ent-ep.log"
JAR_PATH="${APP_HOME}/${JAR_NAME}"
# 检查 jar 是否存在
if [ ! -f "$JAR_PATH" ]; then
echo "[FAIL] ${JAR_PATH} 不存在"
exit 1
fi
# 检查是否已在运行
PID=$(pgrep -f "${JAR_NAME}" 2>/dev/null)
if [ -n "$PID" ]; then
echo "[INFO] 服务已在运行 (PID: ${PID})"
exit 0
fi
# 启动服务
echo "[INFO] 启动 ${JAR_NAME} ..."
nohup java -jar "${JAR_PATH}" --spring.profiles.active=${PROFILES} > "${LOG_FILE}" 2>&1 &
NEW_PID=$!
sleep 1
if kill -0 "$NEW_PID" 2>/dev/null; then
echo "[OK] 启动成功 (PID: ${NEW_PID})"
else
echo "[FAIL] 启动失败,请查看日志: ${LOG_FILE}"
exit 1
fi

38
ng/7/stop.sh

@ -0,0 +1,38 @@
#!/bin/bash
# 执法码2.0 - 停止脚本
# 用法: ./stop.sh
JAR_NAME="zdxt-ent-ep.jar"
SHUTDOWN_WAIT=15
# 查找进程
PID=$(pgrep -f "${JAR_NAME}" 2>/dev/null)
if [ -z "$PID" ]; then
echo "[INFO] 服务未在运行"
exit 0
fi
echo "[INFO] 停止 ${JAR_NAME} (PID: ${PID}) ..."
# 优雅停止
kill "$PID" 2>/dev/null
# 等待退出
COUNT=0
while kill -0 "$PID" 2>/dev/null; do
if [ $COUNT -ge $SHUTDOWN_WAIT ]; then
echo "[WARN] ${SHUTDOWN_WAIT}s 未退出,强制终止..."
kill -9 "$PID" 2>/dev/null
sleep 1
break
fi
sleep 1
((COUNT++))
done
if kill -0 "$PID" 2>/dev/null; then
echo "[FAIL] 停止失败 (PID: ${PID})"
exit 1
else
echo "[OK] 已停止"
fi

36
ng/8/start.sh

@ -0,0 +1,36 @@
#!/bin/bash
# 执法码2.0 - 启动脚本
# 用法: ./start.sh
APP_HOME="/efcode20"
JAR_NAME="zdxt-enf-ep.jar"
PROFILES="prod,prod-enf-ep"
LOG_FILE="${APP_HOME}/zdxt-enf-ep.log"
JAR_PATH="${APP_HOME}/${JAR_NAME}"
# 检查 jar 是否存在
if [ ! -f "$JAR_PATH" ]; then
echo "[FAIL] ${JAR_PATH} 不存在"
exit 1
fi
# 检查是否已在运行
PID=$(pgrep -f "${JAR_NAME}" 2>/dev/null)
if [ -n "$PID" ]; then
echo "[INFO] 服务已在运行 (PID: ${PID})"
exit 0
fi
# 启动服务
echo "[INFO] 启动 ${JAR_NAME} ..."
nohup java -jar "${JAR_PATH}" --spring.profiles.active=${PROFILES} > "${LOG_FILE}" 2>&1 &
NEW_PID=$!
sleep 1
if kill -0 "$NEW_PID" 2>/dev/null; then
echo "[OK] 启动成功 (PID: ${NEW_PID})"
else
echo "[FAIL] 启动失败,请查看日志: ${LOG_FILE}"
exit 1
fi

38
ng/8/stop.sh

@ -0,0 +1,38 @@
#!/bin/bash
# 执法码2.0 - 停止脚本
# 用法: ./stop.sh
JAR_NAME="zdxt-enf-ep.jar"
SHUTDOWN_WAIT=15
# 查找进程
PID=$(pgrep -f "${JAR_NAME}" 2>/dev/null)
if [ -z "$PID" ]; then
echo "[INFO] 服务未在运行"
exit 0
fi
echo "[INFO] 停止 ${JAR_NAME} (PID: ${PID}) ..."
# 优雅停止
kill "$PID" 2>/dev/null
# 等待退出
COUNT=0
while kill -0 "$PID" 2>/dev/null; do
if [ $COUNT -ge $SHUTDOWN_WAIT ]; then
echo "[WARN] ${SHUTDOWN_WAIT}s 未退出,强制终止..."
kill -9 "$PID" 2>/dev/null
sleep 1
break
fi
sleep 1
((COUNT++))
done
if kill -0 "$PID" 2>/dev/null; then
echo "[FAIL] 停止失败 (PID: ${PID})"
exit 1
else
echo "[OK] 已停止"
fi

36
ng/9/start.sh

@ -0,0 +1,36 @@
#!/bin/bash
# 执法码2.0 - 启动脚本
# 用法: ./start.sh
APP_HOME="/efcode20"
JAR_NAME="zdxt-sup-ep.jar"
PROFILES="prod,prod-sup-ep"
LOG_FILE="${APP_HOME}/zdxt-sup-ep.log"
JAR_PATH="${APP_HOME}/${JAR_NAME}"
# 检查 jar 是否存在
if [ ! -f "$JAR_PATH" ]; then
echo "[FAIL] ${JAR_PATH} 不存在"
exit 1
fi
# 检查是否已在运行
PID=$(pgrep -f "${JAR_NAME}" 2>/dev/null)
if [ -n "$PID" ]; then
echo "[INFO] 服务已在运行 (PID: ${PID})"
exit 0
fi
# 启动服务
echo "[INFO] 启动 ${JAR_NAME} ..."
nohup java -jar "${JAR_PATH}" --spring.profiles.active=${PROFILES} > "${LOG_FILE}" 2>&1 &
NEW_PID=$!
sleep 1
if kill -0 "$NEW_PID" 2>/dev/null; then
echo "[OK] 启动成功 (PID: ${NEW_PID})"
else
echo "[FAIL] 启动失败,请查看日志: ${LOG_FILE}"
exit 1
fi

38
ng/9/stop.sh

@ -0,0 +1,38 @@
#!/bin/bash
# 执法码2.0 - 停止脚本
# 用法: ./stop.sh
JAR_NAME="zdxt-sup-ep.jar"
SHUTDOWN_WAIT=15
# 查找进程
PID=$(pgrep -f "${JAR_NAME}" 2>/dev/null)
if [ -z "$PID" ]; then
echo "[INFO] 服务未在运行"
exit 0
fi
echo "[INFO] 停止 ${JAR_NAME} (PID: ${PID}) ..."
# 优雅停止
kill "$PID" 2>/dev/null
# 等待退出
COUNT=0
while kill -0 "$PID" 2>/dev/null; do
if [ $COUNT -ge $SHUTDOWN_WAIT ]; then
echo "[WARN] ${SHUTDOWN_WAIT}s 未退出,强制终止..."
kill -9 "$PID" 2>/dev/null
sleep 1
break
fi
sleep 1
((COUNT++))
done
if kill -0 "$PID" 2>/dev/null; then
echo "[FAIL] 停止失败 (PID: ${PID})"
exit 1
else
echo "[OK] 已停止"
fi

117
script/sql/zfjd-refactoring-v1/097-计划测试数据.sql

@ -1,37 +1,80 @@
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2064321296015052802', 1, '2026-07-01 00:00:00', 1, null, null, '入企业检查', '中星中大印刷(深圳)有限公司', '91440300593048340A', '91440300593048340A', '薛觉忠', '17740696176', '白宁', '17608416858', '13603036826', '-', 1, 1, null, 3, '2064321720478724097', 0, 0, '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922214042443-C1E6-E2489F594', '单位领导', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-09 20:18:45', '2026-06-19 21:12:16', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2064321609971396609', 1, '2026-07-01 00:00:00', 1, null, null, '入企业检查', '中星中大印刷(深圳)有限公司', '91440300593048340A', '91440300593048340A', '薛觉忠', '17740696176', '刘倩琳', '7897', '18923887306', '-', 1, 1, null, 3, '2064321720478724097', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '7897', '20210922213334342-BAF2-EBD8EF897', '17608416858', '2026-06-09 20:20:00', '2026-06-19 21:12:16', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2064324334561914882', 1, '2026-07-02 00:00:00', 1, null, null, '入企业检查', '中星中大印刷(深圳)有限公司', '91440300593048340A', '91440300593048340A', '薛觉忠', '17740696176', '刘倩琳', '7897', '18923887306', '-', 1, 1, null, 5, '', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '7897', '20210922213334342-BAF2-EBD8EF897', '-1', '2026-06-09 20:30:49', '2026-06-19 21:12:16', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2064324486240530433', 1, '2026-07-02 00:00:00', 1, '2026-07-02 00:00:00', 1, '入企业检查', '中星中大印刷(深圳)有限公司', '91440300593048340A', '91440300593048340A', '薛觉忠', '17740696176', '白宁', '17608416858', '13603036826', '-', 1, 1, null, 3, '2064347732801257473', 1, 0, '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922214042443-C1E6-E2489F594', '单位领导', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-09 20:31:25', '2026-06-19 21:12:16', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2064341184406360065', 1, '2026-07-02 00:00:00', 1, '2026-07-02 00:00:00', 1, '入企业检查', '中星中大印刷(深圳)有限公司', '91440300593048340A', '91440300593048340A', '薛觉忠', '17740696176', '程高展', '17608416912', '13691998877', '-', 1, 1, null, 3, '2064347732801257473', 1, 0, '20210922212303855-0C13-EA6482A4F', '深圳市南山区司法局', '20210922212303855-0C13-EA6482A4F', '深圳市南山区司法局', '20210922213529688-21ED-FFB53A808', '社区矫正科', '17608416912', '20210922213529688-21ED-FFB53A808', '17608416858', '2026-06-09 21:37:47', '2026-06-19 21:12:16', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2067161922926661633', 1, '2026-07-01 00:00:00', 1, null, null, '入企业检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '刘倩琳', '7897', '18923887306', '-', 1, 1, null, 1, '', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '7897', '20210922213334342-BAF2-EBD8EF897', '7897', '2026-06-17 16:26:23', '2026-06-19 21:12:16', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2067958001288892417', 1, '2026-07-01 00:00:00', 1, null, null, '入企业检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '崔峰源', '17608417058', '18138810698', '-', 1, 1, null, 1, '', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:09:43', '2026-06-19 21:09:43', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2067958153286275073', 2, '2026-07-03 00:00:00', 1, null, null, '专项入企检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '崔峰源', '17608417058', '18138810698', '-', 0, 0, null, 3, '2067958153353383939', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:10:19', '2026-06-19 21:10:19', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2067958375320145921', 1, '2026-07-08 00:00:00', 2, null, null, '7月8号入企检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '崔峰源', '17608417058', '18138810698', '-', 1, 1, null, 6, '', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608416858', '2026-06-19 21:11:12', '2026-06-19 21:13:04', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2067958816007278594', 1, '2026-07-08 00:00:00', 2, null, null, '准备入企检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '白宁', '17608416858', '13603036826', '-', 1, 1, null, 2, '', 0, 0, '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922214042443-C1E6-E2489F594', '单位领导', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-19 21:12:57', '2026-06-19 21:13:04', 0, null, null);
INSERT INTO efcode_cp_notice (id, plan_id, enforce_date, enforce_time, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, enterprise_id, enterprise_name, enterprise_number, contact_person, contact_phone, enforce_content, enforce_requirement, publish_time, status, create_by, create_dept, update_by, create_time, update_time, is_delete, remark) VALUES ('2067959074116358144', 2067958153286275073, '2026-07-03 00:00:00', 1, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '崔峰源', '17608417058', '18138810698', '', '91440300769156389U', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '张三', '13800138000', '专项入企检查', '入企扫码', '2026-06-19 21:13:59', 1, '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:13:59', '2026-06-19 21:13:59', 0, null);
INSERT INTO efcode_cp_notice_message (id, notice_id, user_id, user_name, msg_from, msg_type, bureau_dept_viewed, enterprise_viewed, message, create_by, create_dept, update_by, create_time, update_time, is_delete) VALUES ('2067959074179272704', '2067959074116358144', '0', '系统', 0, 2, 0, 1, '系统提示:深圳市司法局部门将于2026-07-03 00:00:00-上午进行专项入企检查,如有问题,请及时反馈。', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:13:59', '2026-06-19 21:15:38', 0);
INSERT INTO efcode_cp_notice_message (id, notice_id, user_id, user_name, msg_from, msg_type, bureau_dept_viewed, enterprise_viewed, message, create_by, create_dept, update_by, create_time, update_time, is_delete) VALUES ('2067959273421295617', '2067959074116358144', '17608417058', '崔峰源', 0, 1, 0, 1, '请问可以安排时间吗.', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:14:46', '2026-06-19 21:15:38', 0);
INSERT INTO efcode_cp_notice_message (id, notice_id, user_id, user_name, msg_from, msg_type, bureau_dept_viewed, enterprise_viewed, message, create_by, create_dept, update_by, create_time, update_time, is_delete) VALUES ('2067959580477997058', '2067959074116358144', '2064275054386966530', '新粤云(深圳)信息技术有限公司', 1, 1, 0, 0, '可以入企检查', '2064275054386966530', 'a8b21ab028964281bfa478b59ca4f5e8', '2064275054386966530', '2026-06-19 21:15:59', '2026-06-19 21:15:59', 0);
INSERT INTO efcode_cp_notice_users (id, notice_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2067959074170884096', '2067959074116358144', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:13:59', '2026-06-19 21:13:59');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064321296040218625', '2064321296015052802', '17608416858', '白宁', '13603036826', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-09 20:18:45', '2026-06-09 20:18:45');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064321609996562434', '2064321609971396609', '7897', '刘倩琳', '18923887306', '7897', '20210922213334342-BAF2-EBD8EF897', '7897', '2026-06-09 20:20:00', '2026-06-09 20:20:00');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064324334570303489', '2064324334561914882', '7897', '刘倩琳', '18923887306', '7897', '20210922213334342-BAF2-EBD8EF897', '7897', '2026-06-09 20:30:49', '2026-06-09 20:30:49');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064324486240530434', '2064324486240530433', '17608416858', '白宁', '13603036826', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-09 20:31:25', '2026-06-09 20:31:25');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064340578228768769', '2064340578211991553', '17608416912', '程高展', '13691998877', '17608416912', '20210922213529688-21ED-FFB53A808', '17608416912', '2026-06-09 21:35:22', '2026-06-09 21:35:22');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064341184465080321', '2064341184406360065', '17608416912', '程高展', '13691998877', '17608416912', '20210922213529688-21ED-FFB53A808', '17608416912', '2026-06-09 21:37:47', '2026-06-09 21:37:47');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2067161923056685058', '2067161922926661633', '7897', '刘倩琳', '18923887306', '7897', '20210922213334342-BAF2-EBD8EF897', '7897', '2026-06-17 16:26:23', '2026-06-17 16:26:23');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2067958001356001281', '2067958001288892417', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:09:43', '2026-06-19 21:09:43');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2067958153353383938', '2067958153286275073', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:10:19', '2026-06-19 21:10:19');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2067958375320145922', '2067958375320145921', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:11:12', '2026-06-19 21:11:12');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2067958816070193153', '2067958816007278594', '17608416858', '白宁', '13603036826', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-19 21:12:57', '2026-06-19 21:12:57');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064321646310846466', '2064321296015052802', '2064321296015052802', '2026-06-09 20:20:08', 1, 0, null, '', null, null, '2026-07-01 00:00:00', 1, 0, 'manual_system_sender', '17608416858', '7897', '20210922213334342-BAF2-EBD8EF897', '7897', '2026-06-09 20:20:08', '2026-06-09 20:20:08');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064321646361178114', '2064321609971396609', '2064321296015052802', '2026-06-09 20:20:08', 1, 0, '2026-06-09 20:20:26', '一起', null, null, '2026-07-01 00:00:00', 1, 0, '7897', '17608416858', '7897', '20210922213334342-BAF2-EBD8EF897', '17608416858', '2026-06-09 20:20:08', '2026-06-09 20:20:26');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064324513503506433', '2064324334561914882', '2064324334561914882', '2026-06-09 20:31:32', 1, 0, null, '', null, null, '2026-07-02 00:00:00', 1, 0, 'manual_system_sender', '7897', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-09 20:31:32', '2026-06-09 20:31:32');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064324513566420994', '2064324486240530433', '2064324334561914882', '2026-06-09 20:31:32', 2, 0, '2026-06-09 20:31:45', '一起啊', null, null, '2026-07-02 00:00:00', 1, 0, '17608416858', '7897', '17608416858', '20210922214042443-C1E6-E2489F594', '7897', '2026-06-09 20:31:32', '2026-06-09 20:31:45');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064347157011390465', '2064341184406360065', 'Temp_260ed3de90d54ed19ddbb1a1f18ddd89', '2026-06-09 22:01:31', 1, 1, '2026-06-09 22:03:15', '由于计划执法时间安排较近,系统推荐进行联合,参与单位为:深圳市南山区司法局,深圳市坪山区司法局.请确认.', null, 1, '2026-07-02 00:00:00', 1, 1, 'from_system', '17608416912', '-1', '0', '17608416912', '2026-06-09 22:01:31', '2026-06-09 22:03:15');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064347157065916418', '2064324486240530433', 'Temp_260ed3de90d54ed19ddbb1a1f18ddd89', '2026-06-09 22:01:31', 1, 2, '2026-06-09 22:03:48', '由于计划执法时间安排较近,系统推荐进行联合,参与单位为:深圳市南山区司法局,深圳市坪山区司法局.请确认.', '第一个操作的深圳市南山区司法局执法部门用户选择了2026-07-02 上午时间,请确认时间安排是否合适', 1, '2026-07-02 00:00:00', 1, 1, 'from_system', '17608416858', '-1', '0', '17608416858', '2026-06-09 22:01:31', '2026-06-09 22:03:48');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2067958846327902210', '2067958375320145921', '2067958375320145921', '2026-06-19 21:13:04', 1, 0, null, '', null, null, '2026-07-08 00:00:00', 2, 0, 'manual_system_sender', '17608417058', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-19 21:13:04', '2026-06-19 21:13:04');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2067958846327902211', '2067958816007278594', '2067958375320145921', '2026-06-19 21:13:04', 3, 0, null, '一起吧', null, null, '2026-07-08 00:00:00', 2, 0, '17608416858', '17608417058', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-19 21:13:04', '2026-06-19 21:13:04');
INSERT INTO efcode_cp_task (id, task_name, bureau_dept_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064321720478724097', '中星中大印刷(深圳)有限公司 - 执法检查任务', '20210922213246405-203A-F145B09B4', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-09 20:20:26', '2026-06-09 20:20:26');
INSERT INTO efcode_cp_task (id, task_name, bureau_dept_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2064347732801257473', '中星中大印刷(深圳)有限公司 - 执法检查任务', '20210922212303855-0C13-EA6482A4F', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-09 22:03:48', '2026-06-09 22:03:48');
INSERT INTO efcode_cp_task (id, task_name, bureau_dept_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2067958153353383939', '新粤云(深圳)信息技术有限公司 - 执法检查任务', '20210922212955057-A601-27251E588', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-19 21:10:19', '2026-06-19 21:10:19');
delete
from efcode_cp_log
where create_time > '2026-01-01';
delete
from efcode_cp_notice
where create_time > '2026-01-01';
delete
from efcode_cp_notice_message
where create_time > '2026-01-01';
delete
from efcode_cp_notice_users
where create_time > '2026-01-01';
delete
from efcode_cp_plan
where create_time > '2026-01-01';
delete
from efcode_cp_plan_users
where create_time > '2026-01-01';
delete
from efcode_cp_reserve
where create_time > '2026-01-01';
delete
from efcode_cp_task
where create_time > '2026-01-01';
INSERT INTO efcode_cp_notice (id, plan_id, enforce_date, enforce_time, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, enterprise_id, enterprise_name, enterprise_number, contact_person, contact_phone, enforce_content, enforce_requirement, publish_time, status, create_by, create_dept, update_by, create_time, update_time, is_delete, remark) VALUES ('2070488170834714624', null, '2026-07-24 00:00:00', 1, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '崔峰源,徐敏,胡精书', '17608417058,17608418289,17608417358', '18138810698,18923887170,18938089288', ',,', '91440300769156389U', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '张三', '13800138000', '入企进行安全检查', '安全检查', '2026-06-26 20:43:42', 1, '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:43:42', '2026-06-26 20:43:42', 0, null);
INSERT INTO efcode_cp_notice (id, plan_id, enforce_date, enforce_time, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, enterprise_id, enterprise_name, enterprise_number, contact_person, contact_phone, enforce_content, enforce_requirement, publish_time, status, create_by, create_dept, update_by, create_time, update_time, is_delete, remark) VALUES ('2070488367274942464', null, '2026-07-17 00:00:00', 1, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '崔峰源,黄柠,刘韫仪', '17608417058,17608417299,17608417706', '18138810698,17784048198,13247123572', ',,', '91440300769156389U', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '张三', '13800138000', '入企进行消防检查', '消防检查', null, 0, '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:44:29', '2026-06-26 20:44:29', 0, null);
INSERT INTO efcode_cp_notice_message (id, notice_id, user_id, user_name, msg_from, msg_type, bureau_dept_viewed, enterprise_viewed, message, create_by, create_dept, update_by, create_time, update_time, is_delete) VALUES ('2070488170918600705', '2070488170834714624', '0', '系统', 0, 2, 0, 1, '系统提示:深圳市司法局部门将于2026-07-24-上午进行入企进行安全检查,如有问题,请及时反馈。', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:43:42', '2026-06-26 21:17:38', 0);
INSERT INTO efcode_cp_notice_message (id, notice_id, user_id, user_name, msg_from, msg_type, bureau_dept_viewed, enterprise_viewed, message, create_by, create_dept, update_by, create_time, update_time, is_delete) VALUES ('2070488559378259970', '2070488170834714624', '17608417058', '崔峰源', 0, 1, 0, 1, '进行入企检查,请安排时间.', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:45:15', '2026-06-26 21:17:38', 0);
INSERT INTO efcode_cp_notice_message (id, notice_id, user_id, user_name, msg_from, msg_type, bureau_dept_viewed, enterprise_viewed, message, create_by, create_dept, update_by, create_time, update_time, is_delete) VALUES ('2070496817656750081', '2070488170834714624', '17608629742', '新粤云(深圳)信息技术有限公司', 1, 1, 0, 0, '可以安排时间进行检查', '17608629742', 'a8b21ab028964281bfa478b59ca4f5e8', '17608629742', '2026-06-26 21:18:04', '2026-06-26 21:18:04', 0);
INSERT INTO efcode_cp_notice_message (id, notice_id, user_id, user_name, msg_from, msg_type, bureau_dept_viewed, enterprise_viewed, message, create_by, create_dept, update_by, create_time, update_time, is_delete) VALUES ('2070496919775371265', '2070488170834714624', '17608417058', '崔峰源', 0, 1, 0, 0, '好的', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 21:18:28', '2026-06-26 21:18:28', 0);
INSERT INTO efcode_cp_notice_users (id, notice_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070488170910212096', '2070488170834714624', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:43:42', '2026-06-26 20:43:42');
INSERT INTO efcode_cp_notice_users (id, notice_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070488170914406400', '2070488170834714624', '17608418289', '徐敏', '18923887170', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:43:42', '2026-06-26 20:43:42');
INSERT INTO efcode_cp_notice_users (id, notice_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070488170918600704', '2070488170834714624', '17608417358', '胡精书', '18938089288', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:43:42', '2026-06-26 20:43:42');
INSERT INTO efcode_cp_notice_users (id, notice_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070488367325274112', '2070488367274942464', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:44:29', '2026-06-26 20:44:29');
INSERT INTO efcode_cp_notice_users (id, notice_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070488367329468416', '2070488367274942464', '17608417299', '黄柠', '17784048198', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:44:29', '2026-06-26 20:44:29');
INSERT INTO efcode_cp_notice_users (id, notice_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070488367333662720', '2070488367274942464', '17608417706', '刘韫仪', '13247123572', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:44:29', '2026-06-26 20:44:29');
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070483936189898754', 2, '2026-07-10 00:00:00', 1, null, null, '7月10号入企检查.', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '崔峰源,徐敏,胡精书', '17608417058,17608418289,17608417358', '18138810698,18923887170,18938089288', '-', 0, 0, null, 3, '2070483936206675972', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:26:53', '2026-06-26 20:26:53', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070484229988311042', 1, '2026-08-01 00:00:00', 2, null, null, '8月1号入企安全检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '崔峰源,徐敏,刘韫仪', '17608417058,17608418289,17608417706', '18138810698,18923887170,13247123572', '-', 1, 1, null, 3, '2070484908215656450', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:28:03', '2026-06-26 20:30:45', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070484494724390913', 1, '2026-08-01 00:00:00', 2, null, null, '8月1号,入企进行消防检查.', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '白宁,钟远平,彭静怡', '17608416858,17608418660,17608417895', '13603036826,13902920969,15989238200', '-', 1, 1, null, 3, '2070484908215656450', 0, 0, '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922214042443-C1E6-E2489F594', '单位领导', '17608416858', '20210922214042443-C1E6-E2489F594', '17608417058', '2026-06-26 20:29:06', '2026-06-26 20:30:45', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070485176135213058', 2, '2026-08-01 00:00:00', 1, null, null, '8月1号进行专项检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '崔峰源', '17608417058', '18138810698', '-', 1, 0, null, 3, '2070485176135213060', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:31:48', '2026-06-26 20:31:48', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070485641061228546', 1, '2026-08-03 00:00:00', 1, null, null, '8月3号-市局入企检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '崔峰源', '17608417058', '18138810698', '-', 1, 1, null, 2, '', 1, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '17608417058', '20210922213334342-BAF2-EBD8EF897', '-1', '2026-06-26 20:33:39', '2026-06-26 20:36:07', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070485916488589313', 1, '2026-08-05 00:00:00', 1, null, null, '8月5号坪山入企检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '白宁,徐庆辉,陈汉羽', '17608416858,17608559521,17608416927', '13603036826,18138806655,13510225116', '-', 1, 1, null, 2, '', 1, 0, '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922214042443-C1E6-E2489F594', '单位领导', '17608416858', '20210922214042443-C1E6-E2489F594', '-1', '2026-06-26 20:34:45', '2026-06-26 20:36:07', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070486154448232449', 1, '2026-08-06 00:00:00', 1, null, null, '8月6号福田入企检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '蔡梓帆,康艳红,李思诗', '17608416876,17608417400,17608417604', '19867546686,13632539620,18680618479', '-', 1, 1, null, 2, '', 1, 0, '20210922213223325-6539-D93E7C48A', '深圳市福田区司法局', '20210922213223325-6539-D93E7C48A', '深圳市福田区司法局', '20250707152926088-BD4B-B8826EF6E', '律师工作科(产业发展科)', '17608416876', '20250707152926088-BD4B-B8826EF6E', '-1', '2026-06-26 20:35:42', '2026-06-26 20:36:07', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070497314832670722', 1, '2026-08-09 00:00:00', 1, null, null, '8月9号进行消防检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '崔峰源,李集诚,徐敏', '17608417058,17608417506,17608418289', '18138810698,18138810768,18923887170', '-', 1, 1, null, 6, '', 0, 0, '20210922212955057-A601-27251E588', '深圳市司法局', '20210922212955057-A601-27251E588', '深圳市司法局', '20210922213334342-BAF2-EBD8EF897', '行政执法协调监督处', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608416858', '2026-06-26 21:20:03', '2026-06-26 21:20:57', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070497498400579586', 1, '2026-08-09 00:00:00', 1, null, null, '8月9号进行安全检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '白宁', '17608416858', '13603036826', '-', 1, 1, null, 2, '', 0, 0, '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922214042443-C1E6-E2489F594', '单位领导', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 21:20:46', '2026-06-26 21:20:57', 0, null, null);
INSERT INTO efcode_cp_plan (id, plan_type, plan_date, plan_time, plan_source_date, plan_source_time, enforce_content, enterprise_name, enterprise_number, enterprise_id, contact_person, contact_phone, enforce_user_names, enforce_user_ids, enforce_user_tels, enforce_user_codes, is_public, is_union, union_bureau_dept_names, reserve_status, task_id, system_reserved, manual_reserved, bureau_dept_id, bureau_dept_name, organ_id, organ_name, dept_id, dept_name, create_by, create_dept, update_by, create_time, update_time, is_delete, remark, my_remark) VALUES ('2070497689098805249', 1, '2026-08-23 00:00:00', 1, null, null, '8月23号进行消防检查', '新粤云(深圳)信息技术有限公司', '91440300769156389U', '91440300769156389U', '张三', '13800138000', '白宁,侯清晨', '17608416858,17608417246', '13603036826,13510327895', '-', 1, 1, null, 1, '', 0, 0, '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922213246405-203A-F145B09B4', '深圳市坪山区司法局', '20210922214042443-C1E6-E2489F594', '单位领导', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 21:21:32', '2026-06-26 21:21:32', 0, null, null);
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070483936198287362', '2070483936189898754', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:26:53', '2026-06-26 20:26:53');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070483936206675970', '2070483936189898754', '17608418289', '徐敏', '18923887170', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:26:53', '2026-06-26 20:26:53');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070483936206675971', '2070483936189898754', '17608417358', '胡精书', '18938089288', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:26:53', '2026-06-26 20:26:53');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070484230051225601', '2070484229988311042', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:28:03', '2026-06-26 20:28:03');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070484230051225602', '2070484229988311042', '17608418289', '徐敏', '18923887170', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:28:03', '2026-06-26 20:28:03');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070484230051225603', '2070484229988311042', '17608417706', '刘韫仪', '13247123572', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:28:03', '2026-06-26 20:28:03');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070484494724390914', '2070484494724390913', '17608416858', '白宁', '13603036826', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 20:29:06', '2026-06-26 20:29:06');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070484494724390915', '2070484494724390913', '17608418660', '钟远平', '13902920969', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 20:29:06', '2026-06-26 20:29:06');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070484494724390916', '2070484494724390913', '17608417895', '彭静怡', '15989238200', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 20:29:06', '2026-06-26 20:29:06');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070485176135213059', '2070485176135213058', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:31:48', '2026-06-26 20:31:48');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070485641132531714', '2070485641061228546', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:33:39', '2026-06-26 20:33:39');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070485916488589314', '2070485916488589313', '17608416858', '白宁', '13603036826', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 20:34:45', '2026-06-26 20:34:45');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070485916488589315', '2070485916488589313', '17608559521', '徐庆辉', '18138806655', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 20:34:45', '2026-06-26 20:34:45');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070485916551503874', '2070485916488589313', '17608416927', '陈汉羽', '13510225116', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 20:34:45', '2026-06-26 20:34:45');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070486154448232450', '2070486154448232449', '17608416876', '蔡梓帆', '19867546686', '17608416876', '20250707152926088-BD4B-B8826EF6E', '17608416876', '2026-06-26 20:35:42', '2026-06-26 20:35:42');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070486154448232451', '2070486154448232449', '17608417400', '康艳红', '13632539620', '17608416876', '20250707152926088-BD4B-B8826EF6E', '17608416876', '2026-06-26 20:35:42', '2026-06-26 20:35:42');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070486154448232452', '2070486154448232449', '17608417604', '李思诗', '18680618479', '17608416876', '20250707152926088-BD4B-B8826EF6E', '17608416876', '2026-06-26 20:35:42', '2026-06-26 20:35:42');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070497314899779585', '2070497314832670722', '17608417058', '崔峰源', '18138810698', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 21:20:03', '2026-06-26 21:20:03');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070497314899779586', '2070497314832670722', '17608417506', '李集诚', '18138810768', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 21:20:03', '2026-06-26 21:20:03');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070497314899779587', '2070497314832670722', '17608418289', '徐敏', '18923887170', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 21:20:03', '2026-06-26 21:20:03');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070497498467688449', '2070497498400579586', '17608416858', '白宁', '13603036826', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 21:20:46', '2026-06-26 21:20:46');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070497689098805250', '2070497689098805249', '17608416858', '白宁', '13603036826', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 21:21:32', '2026-06-26 21:21:32');
INSERT INTO efcode_cp_plan_users (id, plan_id, user_id, user_name, user_tel, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070497689098805251', '2070497689098805249', '17608417246', '侯清晨', '13510327895', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 21:21:32', '2026-06-26 21:21:32');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070484593860960258', '2070484229988311042', '2070484229988311042', '2026-06-26 20:29:30', 1, 0, null, '', null, null, '2026-08-01 00:00:00', 2, 0, 'manual_system_sender', '17608417058', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 20:29:30', '2026-06-26 20:29:30');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070484593919680513', '2070484494724390913', '2070484229988311042', '2026-06-26 20:29:30', 1, 0, '2026-06-26 20:30:45', '一起入企进行?', null, null, '2026-08-01 00:00:00', 2, 0, '17608416858', '17608417058', '17608416858', '20210922214042443-C1E6-E2489F594', '17608417058', '2026-06-26 20:29:30', '2026-06-26 20:30:45');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070486261541388289', '2070485641061228546', 'Temp_077af853f1c34cebb733d14917298f02', '2026-06-26 20:36:07', 3, 0, null, '由于计划执法时间安排较近,系统推荐进行联合,参与单位为:深圳市司法局,深圳市坪山区司法局,深圳市福田区司法局.请确认.', null, null, '2026-08-03 00:00:00', 1, 1, 'from_system', '17608417058', '-1', '0', '-1', '2026-06-26 20:36:07', '2026-06-26 20:36:07');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070486261608497154', '2070485916488589313', 'Temp_077af853f1c34cebb733d14917298f02', '2026-06-26 20:36:07', 3, 0, null, '由于计划执法时间安排较近,系统推荐进行联合,参与单位为:深圳市司法局,深圳市坪山区司法局,深圳市福田区司法局.请确认.', null, null, '2026-08-05 00:00:00', 1, 1, 'from_system', '17608416858', '-1', '0', '-1', '2026-06-26 20:36:07', '2026-06-26 20:36:07');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070486261608497155', '2070486154448232449', 'Temp_077af853f1c34cebb733d14917298f02', '2026-06-26 20:36:07', 3, 0, null, '由于计划执法时间安排较近,系统推荐进行联合,参与单位为:深圳市司法局,深圳市坪山区司法局,深圳市福田区司法局.请确认.', null, null, '2026-08-06 00:00:00', 1, 1, 'from_system', '17608416876', '-1', '0', '-1', '2026-06-26 20:36:07', '2026-06-26 20:36:07');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070497544655364098', '2070497314832670722', '2070497314832670722', '2026-06-26 21:20:57', 1, 0, null, '', null, null, '2026-08-09 00:00:00', 1, 0, 'manual_system_sender', '17608417058', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 21:20:57', '2026-06-26 21:20:57');
INSERT INTO efcode_cp_reserve (id, plan_id, plan_group_id, reserve_time, op_status, op_order, op_time, op_message, warring_message, warring_is_pass, op_set_date, op_set_time, res_from, sender_id, receiver_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070497544655364099', '2070497498400579586', '2070497314832670722', '2026-06-26 21:20:57', 3, 0, null, '一起去吧', null, null, '2026-08-09 00:00:00', 1, 0, '17608416858', '17608417058', '17608416858', '20210922214042443-C1E6-E2489F594', '17608416858', '2026-06-26 21:20:57', '2026-06-26 21:20:57');
INSERT INTO efcode_cp_task (id, task_name, bureau_dept_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070483936206675972', '新粤云(深圳)信息技术有限公司 - 执法检查任务', '20210922212955057-A601-27251E588', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:26:53', '2026-06-26 20:26:53');
INSERT INTO efcode_cp_task (id, task_name, bureau_dept_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070484908215656450', '新粤云(深圳)信息技术有限公司 - 执法检查任务', '20210922212955057-A601-27251E588', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:30:45', '2026-06-26 20:30:45');
INSERT INTO efcode_cp_task (id, task_name, bureau_dept_id, create_by, create_dept, update_by, create_time, update_time) VALUES ('2070485176135213060', '新粤云(深圳)信息技术有限公司 - 执法检查任务', '20210922212955057-A601-27251E588', '17608417058', '20210922213334342-BAF2-EBD8EF897', '17608417058', '2026-06-26 20:31:48', '2026-06-26 20:31:48');

3
zdxt-common/zdxt-common-security/src/main/java/org/dromara/common/security/config/SecurityConfig.java

@ -100,7 +100,7 @@ public class SecurityConfig implements WebMvcConfigurer {
}
/**
* actuator 健康检查接口 做账号密码鉴权
* actuator 接口做账号密码鉴权排除 /actuator/health 供网关健康探测
*/
@Bean
public SaServletFilter getSaServletFilter() {
@ -108,6 +108,7 @@ public class SecurityConfig implements WebMvcConfigurer {
String password = SpringUtils.getProperty("spring.boot.admin.client.password");
return new SaServletFilter()
.addInclude("/actuator", "/actuator/**")
.addExclude("/actuator/health")
.setAuth(obj -> {
SaHttpBasicUtil.check(username + ":" + password);
})

2
zdxt-web-client/zdxt-admin-plus-ui/src/views/nos/detail.vue

@ -433,7 +433,7 @@ const getItemAuditText = (pass?: number) => {
};
const BASE_API = import.meta.env.VITE_APP_BASE_API || '';
const FILE_SERVER_PREFIX = 'http://139.186.148.21:8080';
const FILE_SERVER_PREFIX = import.meta.env.VITE_APP_FILE_SERVER_PREFIX || '';
const isOssId = (val: string) => /^[0-9]+$/.test(val.trim());

2
zdxt-web-client/zdxt-admin-plus-ui/src/views/nos/legalTech.vue

@ -117,7 +117,7 @@ const formatDateTime = (time?: string) => {
};
const BASE_API = import.meta.env.VITE_APP_BASE_API || '';
const FILE_SERVER_PREFIX = 'http://139.186.148.21:8080';
const FILE_SERVER_PREFIX = import.meta.env.VITE_APP_FILE_SERVER_PREFIX || '';
const isOssId = (val: string) => /^[0-9]+$/.test(val.trim());

2
zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/my/plan/cp_plan_mine.vue

@ -60,7 +60,7 @@
>
<div class="card-header">
<div class="card-type">{{ item.isUnion === 1 ? '联合执法' : '非联合执法' }} / {{ item.isPublic === 1 ? '公开' : '非公开' }}</div>
<div class="status blue">
<div class="status blue" style="display: none">
{{ getStatusText(item.reserveStatus) }}
</div>
</div>

2
zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-dev-cust-zrb.yml

@ -21,7 +21,7 @@ spring:
driverClassName: com.mysql.cj.jdbc.Driver
# jdbc 所有参数配置参考 https://lionli.blog.csdn.net/article/details/122018562
# rewriteBatchedStatements=true 批处理优化 大幅提升批量插入更新删除性能(对数据库有性能损耗 使用批量操作应考虑性能问题)
url: jdbc:mysql://127.0.0.1:3309/efcode-v2-3?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url: jdbc:mysql://127.0.0.1:3309/efcode-v2-4?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: root
password: root

6
zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-dev-enf-ep.yml

@ -1,7 +1,5 @@
# 开发环境配置
# 开发环境配置 - 执法端实例
server:
# 服务器的HTTP端口,默认为8080
port: 18002
servlet:
# 应用的访问路径
context-path: /enf-ep
context-path: /

6
zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-dev-ent-ep.yml

@ -1,7 +1,5 @@
# 开发环境配置
# 开发环境配置 - 企业端实例
server:
# 服务器的HTTP端口,默认为8080
port: 18000
servlet:
# 应用的访问路径
context-path: /ent-ep
context-path: /

6
zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-dev-sup-ep.yml

@ -1,7 +1,5 @@
# 开发环境配置
# 开发环境配置 - 监督端实例
server:
# 服务器的HTTP端口,默认为8080
port: 18001
servlet:
# 应用的访问路径
context-path: /sup-ep
context-path: /

6
zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-prod-enf-ep.yml

@ -1,7 +1,5 @@
# 开发环境配置
# 生产环境配置 - 执法端实例
server:
# 服务器的HTTP端口,默认为8080
port: 18002
servlet:
# 应用的访问路径
context-path: /enf-ep
context-path: /

6
zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-prod-ent-ep.yml

@ -1,7 +1,5 @@
# 开发环境配置
# 生产环境配置 - 企业端实例
server:
# 服务器的HTTP端口,默认为8080
port: 18000
servlet:
# 应用的访问路径
context-path: /ent-ep
context-path: /

6
zdxt-web-server/zdxt-admin-web-server/src/main/resources/application-prod-sup-ep.yml

@ -1,7 +1,5 @@
# 开发环境配置
# 生产环境配置 - 监督端实例
server:
# 服务器的HTTP端口,默认为8080
port: 18001
servlet:
# 应用的访问路径
context-path: /sup-ep
context-path: /

6
zdxt-web-server/zdxt-gateway-web-server/pom.xml

@ -24,6 +24,12 @@
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<!-- Spring Cloud LoadBalancer (健康检查 + 随机负载均衡) -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
</dependency>
<!-- Spring Boot Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>

3
zdxt-web-server/zdxt-gateway-web-server/src/main/java/com/zdxt/gateway/webserver/ZdxtGatewayApplication.java

@ -1,7 +1,9 @@
package com.zdxt.gateway.webserver;
import com.zdxt.gateway.webserver.config.LoadBalancerConfig;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.loadbalancer.annotation.LoadBalancerClient;
/**
* API网关启动类
@ -9,6 +11,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
* @author zdxt
*/
@SpringBootApplication
@LoadBalancerClient(name = "backend-service", configuration = LoadBalancerConfig.class)
public class ZdxtGatewayApplication {
public static void main(String[] args) {
SpringApplication.run(ZdxtGatewayApplication.class, args);

6
zdxt-web-server/zdxt-gateway-web-server/src/main/resources/application-dev.yml

@ -27,21 +27,21 @@ spring:
predicates:
- Path=/ent-ep/**
filters:
- StripPrefix=0
- StripPrefix=1
- DedupeResponseHeader=Access-Control-Allow-Credentials Access-Control-Allow-Origin, RETAIN_UNIQUE
- id: supervision-service
uri: http://localhost:18001
predicates:
- Path=/sup-ep/**
filters:
- StripPrefix=0
- StripPrefix=1
- DedupeResponseHeader=Access-Control-Allow-Credentials Access-Control-Allow-Origin, RETAIN_UNIQUE
- id: enforcement-service
uri: http://localhost:18002
predicates:
- Path=/enf-ep/**
filters:
- StripPrefix=0
- StripPrefix=1
- DedupeResponseHeader=Access-Control-Allow-Credentials Access-Control-Allow-Origin, RETAIN_UNIQUE
# Actuator监控端点配置

32
zdxt-web-server/zdxt-gateway-web-server/src/main/resources/application-prod.yml

@ -5,6 +5,23 @@ spring:
application:
name: zdxt-gateway
cloud:
# 静态服务实例列表(无需注册中心)
discovery:
client:
simple:
instances:
backend-service:
- uri: http://10.76.108.7:18000
- uri: http://10.76.108.9:18001
- uri: http://10.76.108.8:18002
# LoadBalancer 健康检查配置
loadbalancer:
health-check:
initial-delay: 0s
interval: 10s
path:
default: /actuator/health
configurations: health-check
gateway:
# 全局CORS配置
globalcors:
@ -20,28 +37,28 @@ spring:
allowedHeaders: "*"
allowCredentials: true
maxAge: 3600
# 路由配置
# 路由配置 - 使用 lb:// 协议启用负载均衡
routes:
- id: enterprise-service
uri: http://10.76.108.7:18000
uri: lb://backend-service
predicates:
- Path=/ent-ep/**
filters:
- StripPrefix=0
- StripPrefix=1
- DedupeResponseHeader=Access-Control-Allow-Credentials Access-Control-Allow-Origin, RETAIN_UNIQUE
- id: supervision-service
uri: http://10.76.108.9:18000
uri: lb://backend-service
predicates:
- Path=/sup-ep/**
filters:
- StripPrefix=0
- StripPrefix=1
- DedupeResponseHeader=Access-Control-Allow-Credentials Access-Control-Allow-Origin, RETAIN_UNIQUE
- id: enforcement-service
uri: http://10.76.108.8:18000
uri: lb://backend-service
predicates:
- Path=/enf-ep/**
filters:
- StripPrefix=0
- StripPrefix=1
- DedupeResponseHeader=Access-Control-Allow-Credentials Access-Control-Allow-Origin, RETAIN_UNIQUE
# Actuator监控端点配置
@ -59,5 +76,6 @@ logging:
level:
root: info
org.springframework.cloud.gateway: info
org.springframework.cloud.loadbalancer: info
com.zdxt.gateway: info
com.zdxt.gateway.webserver.filter: info

32
zdxt-web-server/zdxt-gateway-web-server/src/main/resources/application.yml

@ -5,6 +5,23 @@ spring:
application:
name: zdxt-gateway
cloud:
# 静态服务实例列表(无需注册中心)
discovery:
client:
simple:
instances:
backend-service:
- uri: http://localhost:18000
- uri: http://localhost:18001
- uri: http://localhost:18002
# LoadBalancer 健康检查配置
loadbalancer:
health-check:
initial-delay: 0s
interval: 10s
path:
default: /actuator/health
configurations: health-check
gateway:
# 全局CORS配置
globalcors:
@ -20,28 +37,28 @@ spring:
allowedHeaders: "*"
allowCredentials: true
maxAge: 3600
# 路由配置
# 路由配置 - 使用 lb:// 协议启用负载均衡
routes:
- id: enterprise-service
uri: http://localhost:18000
uri: lb://backend-service
predicates:
- Path=/ent-ep/**
filters:
- StripPrefix=0
- StripPrefix=1
- DedupeResponseHeader=Access-Control-Allow-Credentials Access-Control-Allow-Origin, RETAIN_UNIQUE
- id: supervision-service
uri: http://localhost:18001
uri: lb://backend-service
predicates:
- Path=/sup-ep/**
filters:
- StripPrefix=0
- StripPrefix=1
- DedupeResponseHeader=Access-Control-Allow-Credentials Access-Control-Allow-Origin, RETAIN_UNIQUE
- id: enforcement-service
uri: http://localhost:18002
uri: lb://backend-service
predicates:
- Path=/enf-ep/**
filters:
- StripPrefix=0
- StripPrefix=1
- DedupeResponseHeader=Access-Control-Allow-Credentials Access-Control-Allow-Origin, RETAIN_UNIQUE
# Actuator监控端点配置
@ -59,5 +76,6 @@ logging:
level:
root: info
org.springframework.cloud.gateway: info
org.springframework.cloud.loadbalancer: debug
com.zdxt.gateway: info
com.zdxt.gateway.webserver.filter: info

Loading…
Cancel
Save